Showing <% = (fileCount+1) %> files from directory <% = path %>
Click on a column heading to sort by that column. Click the same column
again to reverse the sort.
| File name |
Extension |
Type |
Size |
Created |
Last modified |
Last accessed |
<%
' With the array nicely sorted, this part is a piece of cake!
For i = 0 To fileCount
Response.Write "" & vbNewLine
For j = 0 To UBound( theFiles(i) )
Response.Write " | " & theFiles(i)(j) & " | " & vbNewLine
Next
Response.Write "
" & vbNewLine
Next
%>