PDA

View Full Version : Redirection Page


monilps
08-13-2010, 04:11 PM
Hi,

I have one application which uses classic ASP pages, javascript and some VB.
I want to re-direct from my login page to ABC page.
The problem which, I am facing is that www.XYZ.com/abc.asp
This is the page comes after the login.
Within this page, different forms are called (eg. qwe.asp). But this page is www.XYZ.com/abc.asp. But this page is saved as qwe.asp on the server. So i want to display that information after logining.

Please advice, if anyone have any approach.

Please excuse me for not using too techincal terms, since I am new to it.


Thank you inadvance.

Old Pedant
08-13-2010, 07:50 PM
Okay, so have the contents of the page www.XYZ.com/abc.asp be *ONLY* the following:


<%
Server.Transfer "qwe.asp"
%>

So the user lands on "abc.asp" but then, behind the scenes, is *immediately* transferred to "qwe.asp". Nothing more needed.