ASP.NET Security and Membership tutorials
This tutorial covers: *Manage Web-based security *Implement Forms Authentication *Work with Forms Authentication in the raw *Work with ASP.NET login controls to make writing login pages painless *Work with ASP.NET role-based authorization This tutorial covers managing access to your ASP.NET application. Web site security is a major concern for most enterprises. Without any means of securing a site, the Web site can expose areas of your enterprise you may not want exposed. We'll take a quick look at what security means when it comes to Web applications. Then we'll look at various services available within ASP.NET for authenticating and authorizing users.
Related Tutorials
Enterprise Library : Using Logging Application Block
How to use Enterprise Library 'Logging Application Block' with source and screen shots.
Introduction to Developing HTTP Modules
In ASP.NET, an HTTP Module is a class that implements the IHttpModule interface. By doing that it can listen to and handle events in the web request handling pipeline. They are the equivalent of 'ISAPI Filters' in IIS and 'Filters' in JSP. They are used for multiple purposes from authenticating a request to modifying the response and logging the request.
 
Categories