My current Routing rules are routes.IgnoreRoute(\"{resource}.axd/{*pathInfo}\"); routes.MapRoute( \"Default\", // Route name
Update: As someone pointed out I was missing an s in my Route registration.Now I have a secondary problem.
I\'m trying to use Maarten Balliauw\'s Domain Route class to map sub-domains to the areas in an MVC2 app so that I have URLs like:
Just wondering what the best way to do SO style routes is. What is the best way to do SO style route开发者_如何学Pythons (dashes as spaces)
I have actions SomethingEditor, SomethingDelete, Som开发者_如何学CethingSave, SomethingAdd and i want set these routing: site/Something/Editor, site/Something/Delete, site/Something/Save etc
I am having an issue where UrlHelper\'s RouteUrl method only returns an empty string when run in my tests, though function properly when executing in the real HttpContext. It is, however, finding the
the default routing works fine mysite.com/home/about and i even see how to customize it to make it shorter
in my Asp.net MVC2 app I have registered the following routes in the global.asax.cs: routes.MapRoute( \"Search\",
If I do not want to do this in my View Markup, <%=Html.RouteLink(\"Listings\", \"Listings\", new {m开发者_JS百科arket = \"Austin\", state = \"Texas\", pagenumber = 3 })%>
I have an ASP.NET MVC app and I have a WebForm page I built in the MVC due to a tutorial on how to do something I needed to do, but it was all in WebForm style. Ive tried to figure out how to do the s