Forum Moderators: open
I can't use response.redirect to the other server as I need the user to end up on my site.
Pseudo code is currently something like:
if request("doProcess") then
writeToDateBase(load of variables)
writeATextFile(load of variables)
postDataToOtherWebServer(load of variable) ' this is the function I need to work out....
response.redirect("updatedDynamicPage.asp")
end if
ideally I just want to hit the other server with a "get" so I just request the url: othersite.com/page.asp?variable1=avalue-etc
Does anyone know how best to do that?
[4guysfromrolla.com...]