How to ignore route in asp.net forms url routing - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T21:46:27Zhttp://stackoverflow.com/feeds/question/273447http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/273447/how-to-ignore-route-in-asp-net-forms-url-routing1How to ignore route in asp.net forms url routingAustin2008-11-07T20:01:32Z2009-04-05T22:54:59Z
<p>I am using the .NET 3.5 SP1 framework and I've implemented URL routing in my application. I was getting javascript errors: </p>
<p>Error: ASP.NET Ajax client-side framework failed to load.<br />
Resource interpreted as script but transferred with MIME type text/html.<br />
ReferenceError: Can't find variable: Sys</p>
<p>Which I believe is because my routing is picking up the microsoft axd files and not properly sending down the javascript. I did some research and found that I could use Routes.IgnoreRoute, which should allow me to ignore the axd like below:</p>
<p>Routes.IgnoreRoute("{resource}.axd/{*pathInfo}");</p>
<p>But, when I add that line to my Global.asax I get this error:</p>
<p>CS1061: 'System.Web.Routing.RouteCollection' does not contain a definition for 'IgnoreRoute' and no extension method 'IgnoreRoute' accepting a first argument of type 'System.Web.Routing.RouteCollection' could be found (are you missing a using directive or an assembly reference?)</p>
<p>I've got the System.Web.Routing namespace imported, any ideas?</p>
http://stackoverflow.com/questions/273447/how-to-ignore-route-in-asp-net-forms-url-routing/273470#2734701Answer by Dan Esparza for How to ignore route in asp.net forms url routingDan Esparza2008-11-07T20:09:21Z2008-11-07T20:09:21Z<p>MapRoute and IgnoreRoute are extension methods in System.Web.Mvc --- do you have that assembly referenced properly?</p>
http://stackoverflow.com/questions/273447/how-to-ignore-route-in-asp-net-forms-url-routing/276036#2760368Answer by Haacked for How to ignore route in asp.net forms url routingHaacked2008-11-09T15:47:37Z2008-11-09T15:47:37Z<p>You don't need to reference ASP.NET MVC. You can use the <a href="http://msdn.microsoft.com/en-us/library/system.web.routing.stoproutinghandler.aspx" rel="nofollow">StopRoutingHandler</a> which implements IRouteHandler like so:</p>
<pre><code>routes.Add(new Route("{resource}.axd/{*pathInfo}", new StopRoutingHandler()));
</code></pre>
<p>This is part of .NET 3.5 SP1 and doesn't require MVC. The IgnoreRoutes method is a convenience extension method which is part of ASP.NET MVC.</p>
http://stackoverflow.com/questions/273447/how-to-ignore-route-in-asp-net-forms-url-routing/719842#7198421Answer by Omenof for How to ignore route in asp.net forms url routingOmenof2009-04-05T22:54:59Z2009-04-05T22:54:59Z<p>I would just like to add that you also need to make sure the order of your IgnoreRoutes rule is in the the correct order otherwise your first route will be applied first and your IgnoreRoute will... well be ignored.</p>