I use the XMLHTTP object very successfully using the code below UNTIL the data in the dynamically created form which 'formData' picks up gets to big. This is because it is transformed into a querystring which can become too long to be read. Is there any way around this. I need the response text to create a new (mirror) file.
' data from a dynamic - user-created form
formData = Request.Form
strURL = "result.asp?"
strURL = strURL & formData
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "POST", strURL, false
objXMLHTTP.setRequestHeader "Content-Type", "application/x- objXMLHTTP.send
Your thoughts would be appreciated.
"Away from the actual ... everything is virtual"
' data from a dynamic - user-created form
formData = Request.Form
strURL = "result.asp?"
strURL = strURL & formData
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "POST", strURL, false
objXMLHTTP.setRequestHeader "Content-Type", "application/x- objXMLHTTP.send
Your thoughts would be appreciated.
"Away from the actual ... everything is virtual"