Błąd taki jak: Widok „LoginRegister” lub jego główny nie został znaleziony lub żaden silnik widoku nie obsługuje wyszukiwanych lokalizacji. Przeszukano następujące lokalizacje:
~ / Views / MyAccount / LoginRegister.aspx
~ / Views / MyAccount / LoginRegister.ascx
~ / Views / Shared / LoginRegister.aspx
~ / Views / Shared / LoginRegister.ascx
~ / Views / MyAccount / LoginRegister.cshtml
~ / Views / MyAccount / LoginRegister.vbhtml
~ / Views / Shared / LoginRegister.cshtml
~ / Views / Shared / LoginRegister.vbhtml
Właściwie moja strona widoku strony jest ~/Views/home/LoginRegister.cshtml
tym, co robię
i mój RouteConfig
jest
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "MyAccount", action = "LoginRegister", id = UrlParameter.Optional }
);
}
}