I auto-generated a controller, and it includes calls such as:
//
// GET: /User/
public ActionResult Index()
{
return View();
}
//
// GET: /User/Create
public ActionResult Create()
{
return View();
}
What determines the actual view (.aspx file) that these parameterless View() calls invoke?