PDA

Click to See Complete Forum and Search --> : puting images in page via an admin center


pnj
Jan 17th, 2001, 02:14 PM
howdy,
has anyone seen those pages that allow you to 'make your own' web page? All you do is click in the 'headline' area and type the text you want, then click in the 'body' area and type some body text, then if you want you can put an image on the page.

how do they do the image thing? it opens up the save as dialog box and allows you to save a GIF or JPEG to the server.

does this make sense? I understand the text part(I think) but the image?

any ideas on this?
I don't have an example website but when I run across one I'll post it.

thanks

pnj
Jan 17th, 2001, 04:23 PM
here is an example of what I am talking about.

http://pnj666.knac.com/hp/edit/index.html

click on the images and see what I meen.

pnj
Jan 17th, 2001, 04:25 PM
go to http://www.knac.com and click on MYKNAC and start your own site. then you will beable to see what the hell I am talking about.

thanks

JoshT
Jan 18th, 2001, 07:27 AM
Like this? The client side is easy, then you need a script to handle the incoming file on the server.


<html><head><title>Test</title></head>

<body>
<form action="script.asp" method="post" enctype="multipart/form-data">
<input type="file" name="filebox" size="10">
<input type="submit">
</form>
</body></html>


Josh

pnj
Jan 18th, 2001, 11:35 AM
JoshT,
thanks.
do you have any idea what the server side script would look like? or where I can find one? prefereably in ASP?

thanks.

JoshT
Jan 18th, 2001, 02:19 PM
Here's one:
http://www.15seconds.com/issue/990311.htm

Josh