MVC newbie question:
I\'m picking up a URL of the form go/{mainnav}/{subnav}, which I\'ve successfully routed to the GoController class, me
go/{mainnav}/{subnav}
GoController
If i understand this can be a solution:
public ActionResult Index(string mainnav, string subnav) { return View(mainnav | subnav); }
In the Html View you can use View and after
<%=Model %>