小弟有个程序一直不明白啊!!!!
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<% set fs= server.CreateObject("scripting.filesystemobject")
file=server.mappath("11.txt")
tt=fs.fileExists(file)
if tt=true then
set txt=fs.opentextfile(file)
if not txt.atEndOfStream then
content=txt.readall
line=replace(content,vbcrlf,"<br>")
response.Write(line)
end if
else
response.Write("对不起,没有此文件!")
end if
%>
</body>
</html>