<%
whichfile=server.mappath("snippet.asp")
Set fs = CreateObject("Scripting.FileSystemObject")
Set thisfile = fs.OpenTextFile(whichfile, 1, False)
do while not thisfile.AtEndOfStream
thisline=thisfile.readline
response.write server.htmlencode(thisline) & "<br>"
loop
thisfile.Close
set thisfile=nothing
set fs=nothing
%>