> Does ASP and/or ASP.net have any modules that can be used to perform
> HTTP POSTs to web pages and forms?
[quoted text clipped - 5 lines]
>
> Thanks,
Look at the HttpWebRequest
HttpWebRequest request =
(HttpWebRequest)HttpWebRequest.CreateDefault(url);
request.ContentType = "application/x-www-form-urlencoded";
request.Method = "POST";
request.ContentLength = ...;
and so forth
+Bob+ - 19 Oct 2007 19:47 GMT
>Look at the HttpWebRequest
>
[quoted text clipped - 5 lines]
>
>and so forth
Thanks.
> Does ASP and/or ASP.net have any modules that can be used to perform
> HTTP POSTs to web pages and forms?
[quoted text clipped - 6 lines]
> Thanks,
>
You can use the HttpWebRequest class or the WebClient class to post data.
If you have any control over how the server will recieve the data, you
should consider setting up a web service instead of using HTTP posts. In
ASP.NET you can add a reference to a web service, and it automatically
creates a class with methods that you can use to call the web service.

Signature
Göran Andersson
_____
http://www.guffa.com
+Bob+ - 19 Oct 2007 19:31 GMT
>You can use the HttpWebRequest class or the WebClient class to post data.
>
>If you have any control over how the server will recieve the data, you
>should consider setting up a web service instead of using HTTP posts. In
>ASP.NET you can add a reference to a web service, and it automatically
>creates a class with methods that you can use to call the web service.
Thanks... I'm calling to other people's forms, so I have no control
over the server.