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...
Visual Studio 2010 Beta 1 and .NET FW 4.0 Beta 1 Released!
Yesterday Visual Studio 2010 Beta1 and .NET FW 4.0 Beta 1 was released and you can download it from here. Download Beta 1.
More about Highlights in VS 2010 Beta1 can found in Jason Blog.
Enhancements in ASP.NET and discussions on latest version here
Feedback, Questions related to VS 2010 can be found here
Next posts I am going to discuss more on the highlights in VS 2010
Data View Control in ASP.NET AJAX 4 Preview 4
Introduction The Data View Control in AJAX 4 has some cool features like it can be bind to any JavaScript object or array.It can also be bind to any ASP.NET AJAX Component. You can read the post to know about ASP.NET AJAX 4.0 Preview 4 features. Providing Data to the Data View Control Data can be provided to Data View in a number of ways. Setting the data property of the Data View Control...
ASP.NET AJAX 4.0 Preview 4
Microsoft AJAX Team made the AJAX 4..0 Preview 4 release. This Release concentrating on client-side data manipulation with the support for integration with Web services and ADO.NET Data Services.
ASP.NET 3.5 Chart Control
Introduction ASP.NET 3.5 SP1 having a new charting control which allows the developers to easily add different data visualizations to their web applications.The control supporting different chart types like column charts,line charts and pie charts and also advance chart types like funnel and pyramid charts.This post explains about using this control in web applications. You can download the chart...