ASP.Net MVC Routes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:39:31Z http://stackoverflow.com/feeds/question/935269 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/935269/asp-net-mvc-routes 0 ASP.Net MVC Routes KymZen 2009-06-01T15:17:54Z 2009-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#935300 0 Answer by Tomas Lycken for ASP.Net MVC Routes Tomas Lycken 2009-06-01T15:26:30Z 2009-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#935320 1 Answer by JohnRudolfLewis for ASP.Net MVC Routes JohnRudolfLewis 2009-06-01T15:32:37Z 2009-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>&lt;p&gt;&lt;%= Html.ActionLink("Client1", "FooBar", "Home", new { client = "Client1"}, null) %&gt;&lt;/p&gt; &lt;p&gt;&lt;%= Html.ActionLink("Client2", "FooBar", "Home", new { client = "Client2"}, null) %&gt;&lt;/p&gt; &lt;p&gt;&lt;%= Html.ActionLink("Client3", "FooBar", "Home", new { client = "Client3"}, null) %&gt;&lt;/p&gt; </code></pre> <p>And the resulting markup ends up looking like this:</p> <pre><code>&lt;p&gt;&lt;a href="/Client1/Home/FooBar"&gt;Client1&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Client2/Home/FooBar"&gt;Client2&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Client3/Home/FooBar"&gt;Client3&lt;/a&gt;&lt;/p&gt; </code></pre> <p>I hope this helps.</p> http://stackoverflow.com/questions/935269/asp-net-mvc-routes/935397#935397 0 Answer by KymZen for ASP.Net MVC Routes KymZen 2009-06-01T15:46:05Z 2009-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>