> Is it possible to use a variable in an asp page's html?
> E.g. I pass an asp page a variable
> www.blahblahblah.com/default.asp&Page=add.asp
> If default.asp is a login page then i would want the user to login and
then
> be directed to add.asp
> Likewise if i submitted:
> www.blahblahblah.com/default.asp&Page=list.asp
> I would want the user to be directed to the list page.
> Is this possible?
> I am currently using a response.redirect command but that is to a
static
> page.

Fix your URIs
www.blahblahblah.com/default.asp?Page=add.asp
www.blahblahblah.com/default.asp?Page=list.asp

response.redirect request.querystring("Page")




---
You are currently subscribed to activeserverpages as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to