-
Question:
I have a site where I want the advertisers to have a password and manually log in and update the content on their personal ad space. This includes text and graphics.
I need to know how to set up the code for them to browse their hard drive, choose and upload images into my server and post onto the html or asp?
This needs to be done on the browser only.
Thanks for the ideas.
-
use a <form> tag
<form name=frmUpload method=post action=somepage.asp ENCTYPE=multipart/form-data>
<input TYPE=FILE name=imgUpload>
<input type=submit>
</form>
the important stuff is in <b>BOLD</b>
this will allow the user to choose a file off their hard drive. but you will need some type of server side code to actually do anything w/ this.
most people use a third party plugin. there are free ones available
http://www.15seconds.com/component/free.htm
the above URL has tons of free components for this.
most have great tutorials also