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

Is there any way of adding a route mapping in Global.asax so that routes that contain a certain string (say "Content") are mapped to a different url (say "Content/gz") if a certain http header is present?

share|improve this question
what do you mean by "if a certain http header is present"? – Remus Nov 3 '10 at 22:24
For example if there's a header in the HTTP request specifying that the browser allows gzipped content. – Diego Nov 3 '10 at 22:25
HTTP Requests can be dealt with in the controller, which can return different results based on the request. would that work for your scenario? Or, do you mean that you need to reach a different controller based on the http header? – Remus Nov 3 '10 at 22:27
I need this to work without using controllers. What I'd like is to have the server serve up gzipped images if the browser allows for them. – Diego Nov 3 '10 at 22:34
If your specific question is about gzipped static content, then IIS and ASP.NET can take care of this automatically. But I'm guessing there's a general question as well. – bzlm Nov 3 '10 at 22:38

2 Answers

You could parse the header in the Content controller and do a redirect to Content/gz if it's gzipped.

share|improve this answer
Content is not a controller, it's a folder where different images and css files are found. – Diego Nov 3 '10 at 22:33
1  
generally speaking "content" folders for images and CSS files are ignored for routing purposes so that calls to those files don't end up at a controller. Maybe routing isn't want you're looking for - how do you "serve up" these images? are they embedded in your view? – Remus Nov 3 '10 at 22:38
"Is there any way of adding a route mapping in Global.asax so that routes that contain a certain string (say "Content") are mapped to a different url (say "Content/gz") if a certain http header is present?" That was the original question, I answered it assuming he knew that "Content" could not be an actual controller. – moshjeier Nov 3 '10 at 23:14
up vote 0 down vote accepted

Ended up fixing it by keeping a global Content url that gets updated on each request depending on the presence of the accept-gzip header is present.

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.