ASPX Page Response.Redirect to MVC View
问题 Is it possible to Response.Redirect in aspx that returns a view from MVC? I have an login.aspx page that i need upon successful login to redirect to a view in ~/Views/Home/index.cshtml is this possible? I've tried to following but the url couldnt be resolved. tried: Response.Redirect("~/Views/Home/Index.cshtml"); Response.Redirect("Home"); The controller is "HomeController" and the view is "Index.cshtml" any help with how to call a controller and view or atleast just the url would help. 回答1: