Switch to full style
You can find discussions, solutions and codes related to ASP.NET
Post a reply

Url Redirection In ASP

Sat Apr 16, 2011 9:52 am

can anyone provide me any reference or code to redirect links in ASP.



Re: Url Redirection In ASP

Sat Apr 16, 2011 10:20 am

Code:
<%
Response.Redirect "http://www.yourdomain.com"
%>


Re: Url Redirection In ASP

Fri Jul 27, 2012 11:53 am

The redirect method redirects the users to different URL.
Syntax:
Response. Redirect URL
Examples:
<%
Response. Redirect ""http://www.xyz.com""
%>

Post a reply