I am new to ASP.NET. In my content file I have the line:
<a href="products/myproduct">
I have a view file named Myproduct.aspx and inside the ProductsController there is the method:
public ActionResult Myproduct()
{
return View();
}
However for the line <a href="products/myproduct"> Everything works fine but I get a warning saying the path products/myproduct does not exist. Am I doing something wrong ? Is this the right way to achieve this ?