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 ~/Vie
Try this :
Response.Redirect(Url.Action("Index", "Home"));