Hmm... If I understood...
You have to send the data in the form on your asp page to another page to process and display the results of processing to your page, i.e. call another page service in the background.
If I am in right, you can use MSXML2.ServerXMLHTTP component...
Dim objXMLHTTP
set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
objXMLHTTP.Open "POST", url_to_post_data, false
objXMLHTTP.SetRequestHeader "Content-type", "application/x-www-form-urlencoded"
objXMLHTTP.Send
response_variable=objXMLHTTP.responseText
This code piece send the form field's values to url_to_post_data page, and in the response_variable is the result of processing.
HTH.
Reg,
NotNowJohn
...but the Soon is eclipsed by the Moon
|