Hi,
I would like to handle the BeginRequest event for requests to a specific directory. I know I can handle this in the Global.asax file, with something like this:
if (<request is in directory I care about>)
// run this code
What's the best way to have code that runs whenever a user hits a specific directory, but before the page is loaded?