The Web Developer Designer in VS 2010 has been enhanced for greater CSS compatibility, includes support for HTML and ASP.NET markup snippets. Improved CSS compatibility The Developer designer in VS 2010 has been updated to improve CSS 2.1 standards compliance. HTML and JScript Snippets In the HTML editor, IntelliSense auto-completes tag names. VS 2010 includes over 200 snippets that help...
ASP.NET Application Deployment in VS 2010
ASP.NET Developers often find the following difficulties in deploying the applications • You may require an FTP to transfer your application to shared hosting site. You must also need to perform tasks such as running SQL scripts to configure a database and changing IIS settings such as configuring a virtual directory folder for application...
Hosting ASP.NET sites on IIS 7.0
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...