PDA

Click to See Complete Forum and Search --> : A few Questions


Oct 30th, 2000, 07:17 PM
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?

Oct 31st, 2000, 02:27 AM
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)

Oct 31st, 2000, 10:18 AM
No Problem

monte96
Oct 31st, 2000, 03:32 PM
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. (http://support.microsoft.com/support/kb/articles/Q189/6/51.ASP)