I'm trying to automate what this HTML page does manually (upload a file and pass a few fields of info):
<FORM METHOD="Post" enctype="multipart/form-data" Action="whatever.asp">
Username<INPUT TYPE="Hidden" Name="username" size="20"><br>
Password<INPUT TYPE="Hidden" Name="password" size="20"><br>
File to upload<INPUT TYPE="file" Name="data" size="20"><br>
Client type<INPUT TYPE="Hidden" Name="client" size="20"><br>
<input type="submit" value="Submit">
</form>
Is there any way to do this with ASP? Scripting? MS Access?
Thanks in advanced for any help you can provide.
-XolloX
<FORM METHOD="Post" enctype="multipart/form-data" Action="whatever.asp">
Username<INPUT TYPE="Hidden" Name="username" size="20"><br>
Password<INPUT TYPE="Hidden" Name="password" size="20"><br>
File to upload<INPUT TYPE="file" Name="data" size="20"><br>
Client type<INPUT TYPE="Hidden" Name="client" size="20"><br>
<input type="submit" value="Submit">
</form>
Is there any way to do this with ASP? Scripting? MS Access?
Thanks in advanced for any help you can provide.
-XolloX