What is code in asp for Redirect to another page ?
<%
'This will redirect to you on same server page
Response.Redirect("abc.asp")
"this will redirect to you on external website
Response.Redirect("http://abc.com/")
%>
<%
'This will redirect to you on same server page
Response.Redirect("abc.asp")
"this will redirect to you on external website
Response.Redirect("http://abc.com/")
%>