Free Trial

Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.


  • Create BookmarkCreate Bookmark
  • Create Note or TagCreate Note or Tag
  • DownloadDownload
  • PrintPrint
Share this Page URL
Help

Section A.2. Building extensions

A.2. Building extensions

You can build the same functionality offered by ISAPI modules when you use IIS 7.x in integrated pipeline mode. ISAPI modules are built using native code (mainly C++) and are quite difficult to master.

For compatibility with ASP.NET, you have to write a class that implements the IHttpModule interface (from the System.Web namespace). This interface provides a simple Init method that’s used to initialize its behavior: you’ll generally add an HttpApplication event handler in the Init method, but you can also use this method to initialize some application-specific data because this method is called when the application starts.


  

You are currently reading a PREVIEW of this book.

                                                                                        

Get instant access to over
$1 million worth of books and videos.

  

Start a Free Trial


  
  • Safari Books Online
  • Create BookmarkCreate Bookmark
  • Create Note or TagCreate Note or Tag
  • DownloadDownload
  • PrintPrint