I\'ve got an ASP .Net application running on IIS7. I\'m using the current url that the site is running under to set some static properties on a class in my application. To d
Use global.asax or write a HttpModule and subscribe to start request events. You will have the request passed into your event handler.