Feeds:
Posts
Comments

Archive for the ‘ASP.NET’ Category

Whenever you are trying to use the Connection Pooling mechanism which is in built in ASP.NET you are trying to improve the scalability and the performance of the application. This feature is not that much useful if your application is not  a  multithreaded. If ASP.NET is involved every second that the connection is idle eats [...]

Read Full Post »

ScottGu has written a wonderful article here on the functionality of extender controls which are shipped with the ASP.NET AJAX framework in VS 2008.  Also you can build a new extender control from scratch here. So the foremost question is why do you go for an extendercontrol any way? First and foremost, an extender control is [...]

Read Full Post »

MasterPage in ASP.NET 2.0

In ASP.NET 2.0 we have a concept called Master Pages which are used to give uniform look and feel for the entire application.
How can we access the methods and properties defined in the Master Page?
The only way to access the master page object model is through the Master property.The Master property of the Page class [...]

Read Full Post »

CrossPagePostback in ASP.NET 2.0

What is meant by CrossPagePostback in ASP.NET 2.0?
ASP.NET 2.0 offers a built-in mechanism to override the normal processing cycle and prevent the page from posting back to itself.
Postback may happen in one or the two ways either through the script or through a submit button.
In ASP.NET 2.0, you can configure certain page controls—in particular, [...]

Read Full Post »