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 [...]
Archive for the ‘ASP.NET’ Category
Connection Pooling in ASP.NET 2.0
Posted in ASP.NET on March 18, 2008 | Leave a Comment »
Control Extenders in ASP.NET AJAX
Posted in ASP.NET on January 23, 2008 | Leave a Comment »
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 [...]
MasterPage in ASP.NET 2.0
Posted in ASP.NET on October 12, 2007 | Leave a Comment »
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 [...]
CrossPagePostback in ASP.NET 2.0
Posted in ASP.NET on October 12, 2007 | 1 Comment »
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, [...]