Tagged Questions

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 ...
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 ...
0
votes
1answer
525 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) { ...