Cache, Internet browser cache, or Temporary Internet Files with your browser is used to improve how fast data loads while browsing the Internet. Today, I will describe about “Cache Busting in ASP.NET“. In optimizing your web site performance includes setting long expiration…
ASP.NET 4.5 Hosting :: Friendly URLs in ASP.NET 4.5 Web Forms
In the recent update of ASP.NET, Microsoft released support for Friendly URLs in ASP.NET Web Forms. It is based on the concept of Routing. But, we don’t need to deal with route table to manually add the routes to be…
ASP.NET 4.5 Hosting :: Working with Asynchronous Operations in ASP.NET 4.5 Web Forms
Asynchronously running code can improve the overall performance and responsiveness of your web application. In ASP.NET 4.5 web forms applications you can register asynchronous methods with the page framework. The ASP.NET page framework and .NET 4.5 asynchronous programming support then…
ASP.NET 4.5 Hosting – Top 10 Features in ASP.NET 4.5
Microsoft’s ASP.NET, one of the most successful web application development frameworks ever, is fast becoming mature – the newest version of it is ASP.NET 4.5. You can use ASP.NET to fast develop and deploy highly scalable, high-performance web applications in…
ASP.NET 4.5 Hosting :: Letting Users Manage Their Own Data using ASP.NET 4.5 Web Forms
In this post, I will show you how to let users manage their own data stored in a database. Probably the easiest way to accomplish this is to keep the user name in a separate column. Then when you query the…
ASP.NET 4.5 Hosting :: How to do custom paging in GridView in ASP.Net 4.5
In this post I will discuss a new feature that has been introduced in ASP.Net 4.5 related to GridView server control. In ASP.Net 4.5, GridView control has been enhanced to allow custom paging. When you set AllowPaging property on your…
ASP.NET 4.5 Hosting :: Unobtrusive Validation with ASP.NET 4.5
ASP.NET 4.5 has been improved and latest version ASP.NET. It includes an array of new and modified features. Today we’ll discuss one new feature Unobtrusive Validation that is introduced with ASP.NET 4.5 . So what is Unobtrusive Validation? In a…
ASP.NET 4.5 Hosting :: Control level request validation in ASP.NET 4.5
Request validation in ASP.NET designed to protection against cross site against cross-site scripting (XSS) attacks. This features is available from the beginning days of ASP.NET. This gives your web sites a default protection to prevent XSS attacks. Check this post…