Well if the data is not huge then u can use the querystring to forward the data to the next server.
For posting the data you can use XML to post the data. I havent used that but i think it will work.
msaqib
Junior Poster in Training
91 posts since Sep 2004
Reputation Points: 9
Solved Threads: 1
Ok here is the actual code which you can use to post the data to the next server. It uses XMLHTTP object in ASP.
Response.Buffer = true
xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open("POST", " <a href="http://nextserver.com/something.asp">http://nextserver.com/something.asp</a> ", false)
xml.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
xml.Send("name=MSaqib")
On the nextServer at page something.asp you can get the data using the Request.Form("Name").
Using this way you can post all the data to the next server.
Is it what you were asking in the PM?
msaqib
Junior Poster in Training
91 posts since Sep 2004
Reputation Points: 9
Solved Threads: 1