Answers for "Forms Authentication Redirect to new page"

C#
0

set the page that FormsAuthentication.RedirectFromLoginPage redirects to

// RedirectFromLoginPage cannot specify a path. Use the following
FormsAuthentication.SetAuthCookie(IDTextBox.Text, RememberCheckBox.Checked);
Response.Redirect("some url the user has choosen");
Posted by: Guest on October-08-2020

Code answers related to "Forms Authentication Redirect to new page"

C# Answers by Framework

Browse Popular Code Answers by Language