如何用ASP将指定目录下文本文件读入网页的指定位置??????(50分)

  • 主题发起人 主题发起人 df007
  • 开始时间 开始时间
以前写的代码,filename是前一个页面传过来的参数,是用户选择的文件的路径
<%
filepath=request.querystring("filepath")
%>
<html>
<head>
<title>法律法规查询</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
.flfg { font-family: "宋体"; font-size: 14px; line-height: 24px; text-align: justify; list-style-type: circle; page-break-before: auto; page-break-after: auto; text-indent: 10pt; letter-spacing: 3px; vertical-align: text-bottom; margin-left: 5px}
-->
</style>
</head>

<body bgcolor="#ffffcc" text="#000000" leftmargin="0" topmargin="0">
<div class="flfg">
<%
Set MyFileObject=Server.CreateObject("Scripting.FileSystemObject")
Set txtFile=MyFileObject.OpenTextFile(Filepath)
While not txtFile.AtEndOfStream
response.write(txtFile.ReadLine)
response.write("<br>")
wend
txtFile.Close
%>
</div>
</body>
</html>
 
接受答案了.
 
后退
顶部