You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
Right now, you have to return Redirect("/url/to/page"). We should have a first-class method for this so that you don't have to pass in the URL, e.g. return RedirectToSenf();
The text was updated successfully, but these errors were encountered:
@pranavkm - Let's make this a follow up to your current set of changes.
Add a RedirectToPage() and RedirectToPage(object values). These call RedirectToPage(string) and RedirectToPage(string, object) respectively with the current page's name (from route values).
Right now, you have to
return Redirect("/url/to/page")
. We should have a first-class method for this so that you don't have to pass in the URL, e.g.return RedirectToSenf()
;The text was updated successfully, but these errors were encountered: