Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Where does IIS store a file uploaded with javascript?

Status
Not open for further replies.

FrankExp

MIS
Dec 11, 2002
44
NL
I need to upload a picture. I found in several Javascript books to point to a file use: <input type=file

However, I cannot find how to process the file and write it to the directory I want to store the file.

So part of the code now is:
<form name="upload" METHOD="POST" enctype="multipart/formdata">
<input type=file>

Any ideas?

Thanks!!
 
The file has to be stored on the server, so client-side Javascript is the wrong tool to use for that. You need something like ASP.NET, PHP, or ASP to do this.

Lee
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top