Hi, here is my problem:
I'm trying to send file from the browser client to the IIS server using the followin' code:
<form enctype="multipart/form-data" method=POST
action="url.com/asppage.asp" id=form1ww name=form1ww>
<input type=hidden name=FName value="">
<input type=hidden name=FValue value="">
<input type=file name=file ><br>
<input type=submit name=UPL value="submit">
</form>
I think I receive the file, but I don't know how to manage it.
How can I handle the received file on the server?
Do I need some particular object installed on the web server?
Thanks in advance to anyone who will reply.
G'day
I'm trying to send file from the browser client to the IIS server using the followin' code:
<form enctype="multipart/form-data" method=POST
action="url.com/asppage.asp" id=form1ww name=form1ww>
<input type=hidden name=FName value="">
<input type=hidden name=FValue value="">
<input type=file name=file ><br>
<input type=submit name=UPL value="submit">
</form>
I think I receive the file, but I don't know how to manage it.
How can I handle the received file on the server?
Do I need some particular object installed on the web server?
Thanks in advance to anyone who will reply.
G'day