|
-
Mar 29th, 2001, 09:15 AM
#1
Thread Starter
PowerPoster
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.
-
Mar 29th, 2001, 10:29 AM
#2
Fanatic Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|