
programmatically submitting a form (http)?
If I understand you correctly, you want to be able to use some component to
generate the appropriate HTTP POST message and send it to server. The
System.Net namespace is what you are looking for. (Lance R, will also
probably post something about IPWorks .NET edition, which is nice, but for
simple HTTP posting you do not need it.) Specifically, you can use the
WebRequest class to post to a server. There is a few samples in the
QuickStarts to get you started, look for ClientPost.
Matthew Arnheiter
Quote:
> I am porting a small python script which makes use
> of httplib to post a form (in the http way) and process the result.
> Are there any classes in .net that can help me achieve this ?