Board index » Web Programming » ASP public folder Home Page
|
LesU
|
ASP public folder Home Page
Web Programming425
task: assigning a home page to a public folder(outlook xp) that will list all sub dir's(links), click on a dir link and all files are listed problem: it lists the dir - just not as links would also like help on listing contents of dir when the link is clicked code: <% Dim fso Dim Rootfolder Dim SubFolder set fso = Server.CreateObject("Scripting.FileSystemObject") Set RootFolder = fso.GetFolder ("S:\SMC\Projects") %> <table border="0" width="100%"> <% for each SubFolder in RootFolder.SubFolders %> <tr><a href="S:\SMC\<%=SubFolder.Name%>"></a><%=SubFolder.Name%></tr> <% Next %> ********************************************************************* thanks... David - |
