一聚教程网:一个值得你收藏的教程网站

热门教程

一段用ASP查看ASP文件源码的程序.

时间:2022-07-02 23:28:57 编辑:袖梨 来源:一聚教程网

<%
SUB PrintLine (ByVal strLine)
strLine=server.HTMLEncode(strLine)
strLine=replace(strLine,"<%","<%")
strLine=replace(strLine,"%>","%>
")
strLine=replace(strLine,"<SCRIPT","<SCRIPT",1,-1,1)
strLine=replace(strLine,"</SCRIPT>","</SCRIPT>
",1,-1,1)
strLine=replace(strLine,"<!--","<!--",1,-1,1)
strLine=replace(strLine,"-->","-->
",1,-1,1)
Response.Write strLine
END SUB
Function ShowCode(filename)
Dim strFilename
Dim FileObject, oInStream, strOutput
strFilename = filename
Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
Set oInStream = FileObject.OpenTextFile(strFilename, 1, 0, 0 )
While NOT oInStream.AtEndOfStream
strOutput = oInStream.ReadLine
Call PrintLine(strOutput)
Response.Write("
")
Wend
end function
%>


ASP</a>源码浏览器



请输入ASP文件名



<%
on error resume next
dim file
file=request.form("filename")
response.write file & "源程序如下
"
if trim(file)<> "" then
call showcode(file)
end if
%>




热门栏目