I am working on Umbraco 7 application. There is one controller in that and i am trying to call its method from my View. But when i call the method from the ActionLink it says method not found. when i verified this from URL it says, it is wrong. Following are the code snippets:
Folling is the MVC line:
@Html.ActionLink("Send OTP", "Index", "RegisterSurface", new { id = "lnkSendOTP" })
Following is the MVC controller method
public ActionResult Index()
{
return View();
}
I am getting following error on screen, I could not understand the URL formation as well