Logging is a common Cross-Cutting Concern that many ASP.NET developers solve in the Global.asax file. Because MVC is built on top of ASP.NET you *could* tap into the same solution, but there is a better way. This article will show how easy it is to add logging to your web app using ASP.NET MVC Action Filters.[148910]
Shows how to develop a custom extender working with buttons using the ASP.NET AJAX framework.[148557]
Adnan Aman shows some tricks and tips to improve the performance of web applications.[147872]
This articles shows how to make use of a web service method to track GridView rows changed by the user and then goes on to update only those changed rows.[147871]
Tutorial explains what is data paging, why we need paging in ASP.NET application, how to use simple or custom paging with GridView control, how to use DataPager control with ListView control and more.[147870]
In this article, I am going to show how to serialize and deserialize an object (can be a collection object) into XML format using the ASP.NET System.Xml.Serialization.XmlSerializer class.[146070]
In this article, I am going to describe what are the main differences between asp:LinkButton, asp:ImageButton, asp:Button and asp:HyperLink control and how/where to use them effectively.[145635]
Brian Mains overviews the client portion of the ASP.NET AJAX framework.[145509]
ListView is a new databound control that is shipped with ASP.Net 3.5. ListView control is similar to GridView, Repeater, and DataList which helps us to display a table of data with awesome additional features.[144580]
The behavior of an asynchronous PostBack is quite similar to a synchronous PostBack. In an asynchronous model, all the server side events occur, as they do in a synchronous model. The Microsoft AJAX Library also raises client side events. However when the page is rendered, asynchronous PostBack renders only the contents of the UpdatePanel, whereas in a synchronous PostBack, the entire page is recreated and sent back to the browser. In one of the previous articles, I had shown how to cancel a synchronous PostNack using ASP.NET. In this article, we will see how to cancel an asynchronous PostBack.[143768]