Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have made a custom Route which override GetRouteData. How can I know what type of request is being done? Everything passes the GetRoutData function (.css, .js, .axd, etc) and I would like to do something only if it is a System.Web.UI.Page.

But httpContext.Request.CurrentHandler is always null because the routing takes place just before the handler mapping...

share|improve this question

1 Answer

any reason you can't limit your route to .aspx files? Do you not want to handle pages that superclass ui.page?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.