devxlogo

Creating an HTML Directory in ASP

Creating an HTML Directory in ASP

Although most Web servers give you the option of allowing users to view the list of files in a Web site directory, you may not want to show some types of files. Also, you may want to present the list of files in attractive table. The following code, written for Internet Information Server with Active Server Pages (ASP), displays all of the GIF files in the directory C:inetpubwwwrootwork. It also shows the size of the file, the type, the date that it was last accessed, and when it was last modified. Update the variables called thepath and thefile to reflect your Web’s path and the type of file that you want to display.

 <%@ Language=VBScript %>Directory
<%dim thepath, thefilethepath="c:inetpubwwwrootwork"thefile=".gif"Set fs = CreateObject("Scripting.FileSystemObject")Call ShowFolderList(thepath)Set fs=NothingSub ShowFolderList(folderspec)On error resume nextSet f = fs.GetFolder(folderspec)Set fc = f.Files For Each f1 in fcIf instr(1,ucase(f1.name),ucase(thefile)) ThenResponse.Write ""Response.Write ""Response.Write ""Response.Write ""Response.Write ""Response.Write ""Response.Write "" End IfNextEnd Sub%>
FileSizeTypeAccessedModified
" & f1.name & "" & f1.size & "" & f1.type & "" & f1.DateLastAccessed & "" & f1.DateLastModified & "
See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist