| A Detailed View of the Global.asax File |
| C# Corner |
| The global.asax file is the ASP.Net counterpart of the global.asa file used in traditional ASP Applications. This file is the placeholder for code to respond to application level events raised in ASP.Net or by HTTP modules. The global.asax file resides in the root directory of an ASP.NET application. |
|
| A Matter of Context |
| MSDN |
| ASP introduced several intrinsic objects like Request and Application to help track the context for an HTTP request. ASP.NET takes the next step and bundles these objects, plus several additional context-related objects into an extremely handy intrinsic object called Context. Context is an object of type System.Web.HttpContext. It is exposed as a property of the ASP.NET Page class. It's also available from user controls and your business objects (more on that later). |
|
| ASP.NET State Management using C# |
| The Code Project |
| ASP.NET State Management using C# |
|
| COM+ and .NET - A practical approach - Part 3 |
| The Code Project |
| A look at COM+ and .NET |
|
| Global Exception Handling with ASP.NET |
| http://webdeveloper.earthweb.com/ |
| You can't debug a problem if you don't know that it exists. After you take your web application live, you are no longer the only one who is using it (hopefully), so you need an effective plan to track exceptions when they occur while others are surfing your site. A great way to do this is to implement an exception handler at the application level. This will allow you to consolidate the logging and notification parts of your exception handling in one convenient place. As you'll see from the code examples that follow, your global exception handler can handle both specific exceptions that you trap in your code and generic unhandled exceptions. |
|
| HOW TO: Access ASP.NET Intrinsic Objects from .NET Components by Using Visual C# .NET |
| http://www.kbalertz.com/ |
| This step-by-step article describes how to access the ASP.NET intrinsic objects in a Microsoft .NET component. As in Active Server Pages (ASP) pages, the ASP.NET pages have access to the intrinsic objects like Request , Response and Server objects.... |
|
| HOW TO: Access ASP.NET Intrinsic Objects from .NET Components by Using Visual C# .NET |
| Microsoft Support |
| This step-by-step article describes how to access the ASP.NET intrinsic objects in a Microsoft .NET component. As in Active Server Pages (ASP) pages, the ASP.NET pages have access to the intrinsic objects like Request , Response and Server objects.... |
|
| State Management in
ASP.NET |
| C# Help |
| Web form pages are HTTP-Based, they are stateless,
which means they don’t know whether the requests are all from the same
client, and pages are destroyed and recreated with each round trip to the
server, therefore information will be lost, therefore state management is really
an issue in developing web applications |
|
| XML Web Service Caching Strategies |
| MSDN |
| Despite advancements in network and processor speeds, performance remains a key concern among application developers. So whether you are writing an XML Web service, pushing image bitmaps to a video card, or even engineering that next great processing chip, you will invariably want to consider utilizing a universal mechanism for improving performance: a cache. |
|