Hi all,
I'm revisiting my issue of trying to search a directory on
my webserver and return a hyperlinked list of the Excel files within whatever directory they're stored in.
This is the closest that I've come, although it's in
VB (which lists the full path and file name--not what I need) and not JavaScript (which I need)
this will display:
c:\server\schedlules01Jan02BCEU.xls
There will be four or five excel files in the directory
which I will need listed as hyperlinks so that a visitor can click on them and display the contents of the file.
Thanks for your assistance.
I'm revisiting my issue of trying to search a directory on
my webserver and return a hyperlinked list of the Excel files within whatever directory they're stored in.
This is the closest that I've come, although it's in
VB (which lists the full path and file name--not what I need) and not JavaScript (which I need)
Code:
path = fso.BuildPath("c:\\server\\", "schedules\\");
Response.Write(path);
Response.Write("<br>");
fl = fso.GetFile(path + "01Jan02BCEU.xls");
Response.Write(fl.Name);
Response.Write("<br><br>");
this will display:
c:\server\schedlules01Jan02BCEU.xls
There will be four or five excel files in the directory
which I will need listed as hyperlinks so that a visitor can click on them and display the contents of the file.
Thanks for your assistance.