PDA

View Full Version : Url Redirection In ASP



shikharoy
04-16-2011, 04:24 AM
can anyone provide me any reference or code to redirect links in ASP.

DaveSawers
04-16-2011, 08:41 AM
URL redirection is done on the client, not the server. ASP runs on the server. Once an HTML page containing a link has been generated using ASP and downloaded to the client, there is no further role for ASP on that page.

The right thing to do is to use ASP to generate the link to the right place when the page is generated. Trying to do anything else is just trying to confuse the user and probably has no legitimate use.