I'm a senior class delegate for my high school, and my job for next year is to create our senior banquet slideshow and video.
I've created a website where students can upload photos to be put into our slideshow. The following is the code that I used to create the upload form.
<html>
<body>
<form action="2010Photos.asp" method="get">
<input type="hidden" name="MAX_FILE_SIZE" value="10000" />
<input type="file" /><br/><br/>
Your name: <input type="text" name="NAME" /><br />
In this photo: <input type="text" name="TAGS" /><br />
Description: <input type="text" name="SCRIP" maxlength="1000" /><br /><br/>
<input type="submit" value="Upload" />
</form>
</body>
</html>
My issue now is the 2010Photos.asp file. From what I understand, this is where the stuff people upload goes to. What I don't understand is what exactly is the .asp file, what does it do, how do I create one, and how do I get the uploads off of the file on to my computer? I created the code and attempted to upload a photo to see if some magic would happen and it would upload, but it says there is a 404 error and the file 2010Photos.asp can not be found.
Any help in getting me to understand this magic .asp thing would be highly appreciated. My goal is to have this site up by June 10 so that it will be accessible before school is out for the summer.
Thank you.