ceeleelewis
Programmer
Is there a way for me redirect a user back to a certain asp page based off a field of a form and the QueryString?
I have a total of eight different asp pages. A total (so far) of four users. Ideally I would like to redirect a user back their particular list. But if I can't create a redirect condition, than I will be forced to to essentailly create four separate asp files for each user(a total of thirty-two pages)... I can just copy and paste the pages and change a few things to make this process work but I would like to make the job easy for the next programmer who would be handling this application.
The method that I tried so far is as follows...
Dim lsURL
' Obtain the URL from the QueryString
lsURL = Request.QueryString("RecID"
' Redirect back to previous form
Response.Redirect(lsURL)
Again thanks for the direction...
I have a total of eight different asp pages. A total (so far) of four users. Ideally I would like to redirect a user back their particular list. But if I can't create a redirect condition, than I will be forced to to essentailly create four separate asp files for each user(a total of thirty-two pages)... I can just copy and paste the pages and change a few things to make this process work but I would like to make the job easy for the next programmer who would be handling this application.
The method that I tried so far is as follows...
Dim lsURL
' Obtain the URL from the QueryString
lsURL = Request.QueryString("RecID"
' Redirect back to previous form
Response.Redirect(lsURL)
Again thanks for the direction...