Hello,
I'm trying to set a simple routing system in my ASP.NET MVC C# application and it doesn't work :/
Here is my root "http://localhost/Admin/" or "http://localhost/Admin/Home.mvc/Index"
I have a HomeController which manages an Index and a Start page.
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.
I did some research on it but I don't completely understand how the routing system works.
Firstly, is it possible??
Thx.