Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

re-entrant ASP problems

Status
Not open for further replies.

jborland

Programmer
Apr 10, 2001
1
US
I have a page that is re-entrant (calls itself). After leaving that page (via response.redirect) I go to another apge. That page then may direct the user back to the first page (via response.redirect).

When the user goes back to the first page, it is still in 'post' mode - is there a way to set it back to 'get' mode?
 
Hi,

I didn't understand very well what you want. You can build your own 'get' mode with response redirect:
Code:
Response.Redirect("Page1.asp?var1=value1&var2=value2")
Be careful doing it or use Server.URLEncode to help you.

Regards,
Luís Silva
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top