-
Hi Everyone.
I have a couple of questions.
Using client side script VBScript, Can I...?
A. Prompt the user with an Open File common dialog
B. FTP the file they select from their PC to my IIS web server.
If not has anyone seen any articles remotly related to this?
-
I'd like to know too (this seems to be the only way that I will be notified of any replies to this post aswell. sorry if I made you think someone posted an answer)
-
-
You can get a filename with:
<FORM ENCTYPE="multipart/form-data" name=frmMyForm method="POST" action="MyPostingAcceptorPage.asp">
<INPUT name="filattach" type="file">
<INPUT name=cmdMySubmit type=submit value=Send>
</FORM>
That's the basic idea.. but you need a little more for the server..
Check out this from MSDN.