<% Response.Expires = 60 Response.Expiresabsolute = Now() - 1 Response.AddHeader "pragma","no-cache" Response.AddHeader "cache-control","private" Response.CacheControl = "no-cache" %> <% 'IMPORTANT! 'Include the descriptive text for each page pageTitle = "Photo Gallery - Our Model" %> <% '+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! VERY IMPORTANT !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! '+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ' You MUST leave the body tag here and give it a unique ID value for the page. This ID value ' is used to remove the self-link from the global navigation by concatenating the ID with the ' menu class of "mnu" and then using jQuery to remove the linkage completely from the DOM. ' CAPITALIZATION of the ID is important! "Community" <> "community" '+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ '!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! VERY IMPORTANT !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! '+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ %>
<% dim picFolder set fs=Server.CreateObject("Scripting.FileSystemObject") set picFolder = fs.GetFolder(server.mappath("./thumbs")) for each file in picFolder.files %>

<%=file.name%>
<% next %>