TechBubbles

Archive for June, 2009

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 .

 image-thumb iis7                     

Read more

Related Posts:

  • No Related Posts
1 comment

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.

                                    image-thumb

Read more

Related Posts:

2 comments

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

VS2010

Read more

Related Posts:

No comments

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

                                     image-thumb

Read more

Related Posts:

  • No Related Posts
No comments

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 old URLs.

                                                                                        image-thumb

 

Read more

Related Posts:

  • No Related Posts
1 comment

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.

                                                   image-thumb

Read more

Related Posts:

No comments

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

                                             image-thumb

Read more

Related Posts:

  • No Related Posts
3 comments

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.

                                             image

There are two types of exceptions that can occur in web application.

Read more

Related Posts:

No comments