ASP.NET MVC - Routes and UrlHelper - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:56:40Zhttp://stackoverflow.com/feeds/question/456111http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/456111/asp-net-mvc-routes-and-urlhelper1ASP.NET MVC - Routes and UrlHelper ListenToRick2009-01-18T23:26:19Z2009-01-31T18:06:24Z
<p>I have the following route </p>
<pre><code> routes.MapRoute(
"GigDayListings", // Route name
"gig/list/{year}/{month}/{day}", // URL with parameters
new { controller = "Gig", action = "List" },
new
{
year = @"^[0-9]+$",
month = @"^[0-9]+$",
day = @"^[0-9]+$"
} // Parameter defaults
);
</code></pre>
<p>When I visit the url </p>
<p>gig/list/2009/01/01</p>
<p>This route matches perfectly and my action is called.</p>
<p>Inside my view I have a helper which does the following:</p>
<pre><code>var urlHelper = new UrlHelper(ViewContext);
string url = urlHelper.RouteUrl(ViewContext.RouteData.Values);
</code></pre>
<p>The string generated is: </p>
<p><a href="http://localhost:3539/gig/list?year=2005&month=01&day=01" rel="nofollow">http://localhost:3539/gig/list?year=2005&month=01&day=01</a></p>
<p>Why is it not</p>
<p><a href="http://localhost:3539/gig/list/2005/01/01" rel="nofollow">http://localhost:3539/gig/list/2005/01/01</a></p>
<p>What am I doing wrong?</p>
<p>Help!</p>
http://stackoverflow.com/questions/456111/asp-net-mvc-routes-and-urlhelper/456156#4561562Answer by dimarzionist for ASP.NET MVC - Routes and UrlHelper dimarzionist2009-01-18T23:55:07Z2009-01-18T23:55:07Z<p>Hello! I think your problem is that you didn't specify the route name in your call. Try to use urlHelper.RouteUrl(<strong>"GigDayListings"</strong>, ViewContext.RouteData.Values); overload with route name.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/456111/asp-net-mvc-routes-and-urlhelper/460189#4601890Answer by Jero for ASP.NET MVC - Routes and UrlHelper Jero2009-01-20T05:19:19Z2009-01-20T05:19:19Z<p>Have you checked that when you supply gig/list/2008/01/01 that it is actually using the GigDayListings route? Maybe it's using a different one</p>