I have a MVC3 App with DevExpress MVC Controls and the default
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
in RegisterRoutes, but the following URLs from DevEx includes:
/DXR.axd?r=1_3,1_4...
/DXR.axd?r=1_42,1_41,14_18,14_2,...
just invoke the Application_EndRequest() without an invoke of Application_BeginRequest() before.
At the moment, this leads to strange workarounds for bind/unbind the nHibernate CurrentSessionContext...Probably there are better ways to exclude these URLs as a string compare in Application_EndRequest()?
( Ref:
In what situation Application_EndRequest is called but Application_BeginRequest is not called?
I could not find any Exeption and it only concerns the above DevEx URLs )