Tracing for an ASP.NET Application Instead of enabling tracing for individual pages, you can enable it for your entire application. In that case, every page in your application displays trace information.…
Request and Response Cycle in ASP.Net AJAX The difference between how a traditional web application model and an Ajax-based web application model works. In traditional web applications, when a form is submitted, a request…
Asynchronous ASP.NET ASPX Pages When you take advantage of asynchronous ADO.NET methods, you must also enable asynchronous ASP.NET page execution. You enable an asynchronous ASP.NET page by adding the following…
.NET Permissions and Protected Resources what permissions come with .NET Framework, While this article only focuses on existing permissions, because CAS is configurable, you can build your own permission classes. To help…
Collection Classes ASP.Net C# The .NET Framework provides specialized classes for data storage and retrieval. These classes provide support for stacks, queues, lists, and hash tables. Most collection classes…
Using the Repeater Control ASP.Net Repeater Control in ASP .Net:The Repeater control performs a very common function that most Web developers have encountered in their projects work. Very often you need to display…
Session ID in ASP.Net Asp.Net use 120 bit identifier to track each session. This is secure enough and can't be reverse engineered. When client communicate with server, only session id is transmitted,…
Quick Look at the ASP.NET Architecture We take a quick look at the ASP.NET architecture. We divide our discussion in two parts: the application life cycle events and the page life cycle events.In the Http Pipeline, you…