How to return ActionResult with specific View (not the controller name)
finally, this was the solution
return View("ResetPassword", new ResetPassword
{
fields= fields
});
private ActionResult SendMail(string login)
{
return View("~/Views/SpecificView.cshtml")
}
You can directly point towards specifc view by pointing to their location explicitly ..