ASP.Net MVC Routes - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T05:39:31Zhttp://stackoverflow.com/feeds/question/935269http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/935269/asp-net-mvc-routes0ASP.Net MVC RoutesKymZen2009-06-01T15:17:54Z2009-06-20T07:05:31Z
<p>Hello,</p>
<p>I'm trying to set a simple routing system in my ASP.NET MVC C# application and it doesn't work :/</p>
<p>Here is my root "http://localhost/Admin/" or "http://localhost/Admin/Home.mvc/Index"</p>
<p>I have a HomeController which manages an Index and a Start page. </p>
<p>In the Index page, I have a list of client to select (button or whatever) and I would like to go to "http://localhost/StoreV3Admin/{client}/Home.mvc/Start" in function of the client selected.</p>
<p>I did some research on it but I don't completely understand how the routing system works.</p>
<p>Firstly, is it possible??</p>
<p>Thx.</p>
http://stackoverflow.com/questions/935269/asp-net-mvc-routes/935300#9353000Answer by Tomas Lycken for ASP.Net MVC RoutesTomas Lycken2009-06-01T15:26:30Z2009-06-01T15:26:30Z<p>I think you MVC application has to reside in the applicaiton root to function properly. Try creating a VirtualDirectory in IIS and see if that helps.</p>
<p>And why do you have a ".mvc" in your route? Don't you just mean <code>http://localhost/Admnin/Home/Index</code>?</p>
http://stackoverflow.com/questions/935269/asp-net-mvc-routes/935320#9353201Answer by JohnRudolfLewis for ASP.Net MVC RoutesJohnRudolfLewis2009-06-01T15:32:37Z2009-06-01T15:32:37Z<p>I just threw together a simple mvc app, and I was able to get what you described to work just fine.</p>
<p>In my global.asax.cs, in the RegisterRoutes method, I added the following route:</p>
<pre><code>routes.MapRoute(
"Client",
"{client}/{controller}/{action}/{id}",
new { client = "Default", controller = "Home", action = "Index", id = "" }
);
</code></pre>
<p>In my controller, I declare a method like this:</p>
<pre><code>public ActionResult FooBar(string client)
{
return View();
}
</code></pre>
<p>In my view, I build links like this:</p>
<pre><code><p><%= Html.ActionLink("Client1", "FooBar", "Home", new { client = "Client1"}, null) %></p>
<p><%= Html.ActionLink("Client2", "FooBar", "Home", new { client = "Client2"}, null) %></p>
<p><%= Html.ActionLink("Client3", "FooBar", "Home", new { client = "Client3"}, null) %></p>
</code></pre>
<p>And the resulting markup ends up looking like this:</p>
<pre><code><p><a href="/Client1/Home/FooBar">Client1</a></p>
<p><a href="/Client2/Home/FooBar">Client2</a></p>
<p><a href="/Client3/Home/FooBar">Client3</a></p>
</code></pre>
<p>I hope this helps.</p>
http://stackoverflow.com/questions/935269/asp-net-mvc-routes/935397#9353970Answer by KymZen for ASP.Net MVC RoutesKymZen2009-06-01T15:46:05Z2009-06-01T15:46:05Z<p>Yep it works! Thank you!</p>
<p>Can we just do it with ActionLinks or is it possible to do that with buttons or a dropdown for example?</p>