So I have a controller with an action that takes a string.
public class HomeController : Controller
{
public ActionResult Index(string date)
{
return View();
}
}
public class HomeController : Controller
{
public ActionResult Index(string date)
{
return View();
}
}