Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to create a route rule with for an image with a . in the name and it doesn't seem to be working for me.

routes.MapRoute(
     "Favicon", //Route Name
     "favicon.png",
     new { controller = "Content", action = "Images", id = "favicon.ico" }
);

The controller "Content" does not exist, I am trying to map to "Content/Images/favicon.ico" so it picks up the images. I have tried the route debugger and it looks like it is matching the right route but it is not showing the right image.

Any ideas?

share|improve this question
This previous answer should help stackoverflow.com/questions/487230/… – Chris W Aug 11 '11 at 15:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.