Hello everybody,
I was not able to find a simple workaround for this, so I tought I'll ask :).
In the older IIS Versions I was able to add an ISAPI Extension (.NET Framework) for all filetypes, meaning that all files were processed with (e.g.) the Application_BeginRequest sub in global.asax.
I was able to get this function setting following:
runAllManagedModulesForAllRequests="true"
But as I worked on it seems that some files still are not processed the same.
Sample Project:
I need to verify a session varaible on certain image and pdf files - but as soon as I try to use Application_BeginRequest on a session variable with an image I get 'session state not available in this context'
Is there a simple workaround for this problem?
Best Regards