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 derfloh 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
Joined
Nov 10, 2003
Messages
28
Location
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 ( ) );
 
bear: Have you executed this code on the server?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top