Click to See Complete Forum and Search --> : File Location


Kel
02-19-2003, 11:46 AM
I'm sure it's possible, I'm not so sure that Javascript is the way to do it though.

I would like for my users to be able to click on a button, navigate to a specified file, and e-mail that directory location through a script I have setup in a 'suggestion box'. The suggestion box currently has several fields through which they can e-mail various information, and I would like to modify this script for use on our Intranet site so that they can submit the directory location of files for me to update.

Any ideas? If my users can send me directory locations, I can easily create the links they desire. This would only be useful in an intranet environment.

Thanks Millions!

-Kel

DaveSW
02-19-2003, 12:15 PM
http://javascript.internet.com Check this out. It's got loads of free scripts to use directories and files, and then someone more technical than me could tell you how to submit it.

DaveSW
02-19-2003, 12:18 PM
There's one script under 'Navigation', called 'Hard Drive Browser'. This one may do the first part of what you want.

Dave

Kel
02-19-2003, 04:32 PM
Thanks! That's one of my favorite resources, unfortunately, I couldnt' find what I needed there, or anywhere else!!!

Ironically, Google bailed me out of this one... turns out there's an input type of 'File'...

So, the code for my control looks like:

<input type=file maxlength=255 name=file>

When I plug all of this into my suggestion box code, It works perfectly!

Thanks Again!