So this is my controller :
[HttpGet("Home/Project-Name/Dashboard")]
public IActionResult Index()
{
ViewBag.Current = "Dashboard";
return View();
}
The question is, how do I get the "Project-Name" Value ?
So this is my controller :
[HttpGet("Home/Project-Name/Dashboard")]
public IActionResult Index()
{
ViewBag.Current = "Dashboard";
return View();
}
The question is, how do I get the "Project-Name" Value ?