Tridip Bhattacharjee

Tridip Bhattacharjee

  • NA
  • 1.2k
  • 74.2k

In what order asp.net mvc action find view

May 17 2018 4:51 AM
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)