ASP.NET 2.0 Compilation Mode Gotcha Web Project HTTP Handlers
Posted by: Rick Strahls WebLog,
on 28 Jun 2005 |
View original | NEW Bookmarked: 0 time(s)
In my West Wind Web Store app I have an HTTP handler that manages redirecting links from our old store to the current store. The old store used a custom URL extension (.wws) and so the new version simply maps the .wws extension to the ASPNET_ISAPI.DLL and then handles the extension in Web.Config to point at this HTTP handler. The Handler does a little bit of URL fix up and then simply does a Server.Execute() to run the proper mapped ASPX page.
I implemented this HTTP handler in my Web...