Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

redirect to new link

Status
Not open for further replies.

bearfish

Programmer
Nov 10, 2003
28
MY
hi, below is the code, after login successful, i want to redirect the user to a new link. The code redirect back to How can I redirect to ?
Thanks alot.

StringBuilder url = new StringBuilder ( );
url.Append ( "mail.anyone.com/" );
url.Append ( Server.UrlEncode ( UserEmail.Value ) );
Response.Redirect ( url.ToString ( ) );
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top