Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
216 views

ASP.Net MVC Routing and the PreRequestHandler

I'm trying to instantiate a service and authenticate the current user within the Application_PreRequestHandlerExecute() method and then dispose of this service in the* ...
0
votes
2answers
532 views

Application_PreRequestHandlerExecute: null HttpContext.Current?

Is it safe to always assume that HttpContext.Current will be non-null in Application_PreRequestHandlerExecute? EDIT: Assuming ASP.NET webforms (not MVC).