here is my root controller :
[HttpPost]
public ActionResult Index()
{
}
but it couldn't load project it give me :
The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Try this
public ActionResult Index()
{
}
[HttpPost, ActionName("Index")]
public ActionResult IndexPost()
{
}
The ActionName
attribute enables you to create a method of one name that relates to another
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With