Click here to Skip to main content
15,903,201 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Can any one help me, how to redirect http://www.xxxx.com/default.asp To http://www.xxxx.com in ASP
Posted
Comments
Thanks7872 14-May-14 2:09am    
Dont you have access to Google.com? I can't understand why developers are this much lazy?
http://stackoverflow.com/questions/11381026/how-to-redirect-with-asp-classic
If its ASP.NET, you may search for "Response.redirect" in your search engine. Take care while redirecting in the same site.

simple try this
Response.Redirect("http://www.xxxx.com"); 
 
Share this answer
 
try this

Response.Redirect("www.xxxx.com/default.aspx");
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900