Http/post

bcorbett

Active member
Joined
Oct 16, 2006
Messages
27
Programming Experience
Beginner
I have the following HTML form


<form enctype="multipart/form-data"action="http://www.SomeURL.com/id.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="5000000" />
<input type=”hidden” name=”AUTH_NAME” value=”john” />
<input type=”hidden” name=”AUTH_PW” value=”mypass” />
Send this file: <input name="userfile" type="file" />
<input type="submit" value="Send File" />
</form>


This page works fine, but I have several files that need uploading. My question, Is there a way to do this from vb.net? Basicly what I'm looking to do is loop thru an array of files use the vb.net to do the http Post.
 
Back
Top