ASP is microsoft version of CGI "Althoughyoucanreadtheentire bookfrombeginningtoendandunderstandActiveServer Pages fromaholistic perspective, that was not my intent." COOOOOL: "PICS Response.PICS(strPICSLabel) AddsaPICS(Platformfor Internet Content Selection) label totheHTTPresponse header. This PICSsystemlabels your webcontent toenableratingservices (such as the Recreational Software Advisory Council (RSAC) andSafeSurf, a parentsŐ organization) to rate that content according to various criteria set by content control software such as NetNanny and CyberWatch." <% ' The following piece of code sets a PICS label for the ' content of this page corresponding to the rating discussed ' earlier. Dim strPicsLabel strPicsLabel = _ "(PICS-1.1 " strPicsLabel = strPicsLabel & "labels on " & Chr(34) strPicsLabel = strPicsLabel & "1998.03.20T06:00-0000" & _ Chr(34) strPicsLabel = strPicsLabel & " until " & Chr(34) strPicsLabel = strPicsLabel & "1999.12.31T23:59-0000" & _ Chr(34) strPicsLabel = strPicsLabel & "ratings (V 0 S 1 L 3 N 0))" Response.PICS(strPicsLabel) %> INTERESTINGGG: <% ' The following line of code determines the physical path ' of the current script for later use. strSearchPath = _ Server.MapPath("/searchscripts/start/searchstart.asp") ' This following code then uses the strSearchPath string to ' determine the file attributes for the current file for ' display in the client-side HTML. Set fs = Server.CreateObject("Scripting.FileSystemObject") Set f = fs.GetFile(strSearchPath) datFileLastModified = f.DateLastModified %> MapPath Example The current script was last modified <%=datFileLastModified%>.