1
Answer

In what order asp.net mvc action find view

public class StaffController : Controller
{
[HttpGet]
public IActionResult Index()
{
// logic here...
return View("AnotherPage");
}
}

action check the shared folder first or view folder Views\Staff folder ?
 
thanks
Answers (1)