Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
10k views

How to ignore route in asp.net forms url routing

I am using the .NET 3.5 SP1 framework and I've implemented URL routing in my application. I was getting javascript errors: Error: ASP.NET Ajax client-side framework failed to load. Resource ...
5
votes
1answer
148 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
435 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
1answer
266 views

IgnoreRoute for PHP Site embedded in ASP.NET MVC 3

I have an MVC 3 site with an embedded worpress blog. All the following urls are directed through MVC. www.mysite.com www.mysite.com/aboutus www.mysite.com/contactus I also have a top level ...
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 ...
1
vote
0answers
325 views

IgnoreRoute not working for PIE.htc

I've been search for a long time and just can't seem to find my mistake. For my MVC 3 website, I need buttons with rounded edges, so in the IE stylesheet I register the PIE.htc. Now the problem is ...
0
votes
1answer
44 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, ...
0
votes
1answer
524 views

ASP.NET MVC IgnoreRoute method doesn't work correctly when URL starts with “/Views/”

I use ASP.NET MVC in my application. Users can specify their own images, styles, scripts by including them on the page. But when they specify URL to the file which not exists then routing mechanism ...
0
votes
2answers
536 views

ASP.NET routing ignoreRoute does not work

I can't exclude non-existing files from the routing system. I am dealing with this code in a Web Forms scenario: public static void RegisterRoutes(RouteCollection routes) { ...