Tagged Questions

5
votes
1answer
164 views

What is the difference between these two ASP.NET MVC IgnoreRoute directives?

The default ASP.NET MVC 3 project template contains the following IgnoreRoute directive: routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); I have now seen multiple projects change this line ...
5
votes
4answers
454 views

How do I block requests for all *.php, *.cgi, etc. pages from inside an ASP.NET MVC 1.0 app hosted in IIS7?

I'd like to block requests to any .php or .cgi regardless of the pathing information. For example, when the following url is used: http://mysite/Admin/Scripts/Setup.php It matches an existing ...
2
votes
2answers
2k views

IgnoreRoute in ASP.MVC

I am trying to access a .js file in the views directory. I have an MVC application with /Views/Home/MyControl.ascx I have a js file /Views/Home/MyControl.js I wish to reference the .js file and keep ...
0
votes
1answer
50 views

Can I create a route that matches an already ignored route?

So, I have the following in my global.asax creating my MVC routes. They are called in the order that they appear below. What I expected to have happen was it would ignore the routes to the css folder, ...