In the following article we will see how to use Tracing in ASP.NET. While developing ASP.NET applications we often need to identify the problem in the application. Tracing can help us identify and resolve the issues in the application. Tracing in ASP.NET is used to follow the page’s execution path and allows us to view request-related […]
ASP.NET
HTTP Request in ASP.NET
In ASP.NET to process requests a pipeline model is used which consists of HTTPModules and HTTPHnadler objects. This pipeline model forms the low level framework which is used by web pages and web services. Here we will see a high level overview of asp.net request processing. When we request a URL from a Web browser, […]
Understanding Caching in ASP.NET
Caching can improve application performance. Caching is more important for web applications since performance is an important factor in the case of web applications. In this article we will see how caching in ASP.Net is used to improve application performance. Creating web applications often requires storing items in-memory so that they are easier to retrieve the […]