| Next Tip?
Home » Archive

Articles in the Microsoft .Net Category

CSharp, VB.Net Interview »

[30 Aug 2009 | No Comment | 459 views]

Thread.Abort ( ) stops the thread execution at that moment itself.
Tweet This Post

CSharp, VB.Net Interview »

[30 Aug 2009 | No Comment | 448 views]

Yes, we can use event with thread,this is one of the techniques to synchronize one thread with other.
Tweet This Post

CSharp, OOPs, VB.Net Interview »

[30 Aug 2009 | No Comment | 442 views]

Method overloading occurs when a class contains two methods with the same name, but different signatures.
Tweet This Post

Asp.Net »

[30 Aug 2009 | No Comment | 381 views]

Private,   Public/ share, and  Satellite.
There is some debate for Satelite assemblies some says this is a type some says this is a technique.
Tweet This Post

Asp.Net »

[30 Aug 2009 | No Comment | 439 views]

The Global. asax (including Global. asax.cs) is used to implement application and session level events.
All variables are available of Global.asax through out the application.
Tweet This Post

CSharp, VB.Net Interview »

[29 Aug 2009 | No Comment | 500 views]

‘Thread Current thread’ refers to the current thread running in the method.  ’Current Thread  is a public Static property.
Tweet This Post

CSharp, VB.Net Interview »

[29 Aug 2009 | No Comment | 437 views]

Thread  abort()  stops  the  thread execution at that moment itself.
Tweet This Post

Asp.Net, Microsoft .Net »

[15 Aug 2009 | No Comment | 686 views]

There is no direct way provided by webservices to maintain state. But webservices can maintain the state by using asp.net instrinsic objects i.e Session and application.
using System.web.Services;
public class myWebService : Webservices
{
[Webmethod()]
public void maintainState(string value)
{
Session(“Val”) = value;
}
}
Tweet This Post

Asp.Net, Microsoft .Net »

[8 Aug 2009 | No Comment | 3,645 views]

What is cross page posting?

Asp.Net »

[8 Aug 2009 | No Comment | 420 views]

I have a check boxes in datagrid and want to checked and unchecked on a specific operation.
How to do this at client side?