IIS 7.0 provides the ASP.NET Integration by default, It supports both the new and old integration modes that can be used side by side on the same server. On IIS 7.0 you can run multiple ASP.NET version applications using integration and classic modes .
Client IDs in ASP.NET 4.0
This post explains about setting the client ids in ASP.NET 4.0. Knowing the id attribute of the control rendered on page is a long-standing issue. It is important to know the id if we want to use it in script libraries. The new property ClientIdMode Addresses this issue...
AJAX Client –Side templating in ASP.NET 4.0
The AJAX in ASP.NET 4.0 introducing new client data rendering features to page and component developers. It allows the developers to render JSON data from server as HTML in a highly efficient way. This post discuss about one of the AJAX features in ASP.NET 4.0.
You need to download the AJAX scripts from following location to test the sample
download link
Session State in ASP.NET 4.0
This post explains about Shrinking session state in ASP.NET 4.0 ASP.NET Provides two options for storing session state for web applications. 1. Out of process session state 2. MS SQL server session state...
Permanently Redirecting a Page in ASP.NET 4.0
Web applications commonly move the pages and content around the servers. This results to accumulation of old links in search engines. Traditionally this was handled in ASP.NET using the Response.Redirect method to forward the request to the new URL. However Redirect method issues an HTTP 302 found (temporary redirect) response. Redirect method results in extra round trip when user accessing the...
Auto Start Web Applications in ASP.NET 4.0
Some web applications require large amount of initialization processing time before serving the first request. In some cases web applications may also need to load the large amount of data in first request. In earlier versions we used write the custom code in Application_Load method in Global.asax file to handle above scenarios...
ASP.NET 4.0 Extensible Output Caching
A number of Exciting ASP.NET features are coming in the .NET Framework version 4.0. These features are included in Visual Studio 2010 release. This post explains about one of those features core services in ASP.NET 4.0...
ASP.NET Error Handling
This article explains about adding error handling capabilities to the ASP.NET Web application. It also explores the possible ways to handle and log the errors that occur in the application...