PDA

View Full Version : Trying to get Response.Redirect to work


dprichard
04-23-2009, 09:34 PM
I am launching a script that writes out a bunch of data then forwards to another page. The script is formpost.asp and the request is sent to it by another server and not by a visitor with a browser. The script runs just fine and then writes the data out that it receives to the test file just fine, but the next script doesn't launch. I think I may be doing something wrong the the Resonse.Redirect, but since all of this is happening outside of the browser and I can't see what is going on I just don't know.

Any help would be greatly appreciated.

Response.Redirect "https://192.168.240.15/go.asp?pend=addord&shipadd1=" & street1 & "&shipadd2=" & street2 & "&shipadd3=" & street3 & "&shipcity=" & city & "&shipstate=" & region & "&billemail=" & emailAddress

snowieken
04-27-2009, 02:51 AM
First try adding () parenthesis to the argument.

Response.Redirect("url")