Hi,
How do I simulate this from the server side:
<form name="SearchForm" method="POST" id="SearchForm"
action="http://SOMEURL/Search.ASP?Parm1=1&Parm2=2">
I have generally been posting data using:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "POST","http://SOMEURL/Search.asp?" & strParmList, False
xml.Send
The above is fine for passing URL parameters, but I need to simulate it
coming from a form which has a name. How do I pass the form name
which is used at the posted URL?
Help!
Patrice - 26 Sep 2007 11:48 GMT
See System.Net.Webclient and in particular the UploadData method that uses
key/value pairs (http://support.microsoft.com/kb/290591 for "classic ASP"
but in this case note that this is not the suitable forum, this one is for
ASP.NET)..
--
Patrice
> Hi,
>
[quoted text clipped - 14 lines]
>
> Help!