I am creating an ASP.NET MVC 5 application and I have some issues with routing. We are using the attribute Route to map our routes in the web application. I hav
Route
//its working with mvc5 [Route("Projects/{Id}/{Title}")] public ActionResult Index(long Id, string Title) { return view(); }