|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP最大的缺点在于网络的安全性和可靠性,企业将经营数据放在开放的平台上,最大的担忧就是如何保证这些数据不被其他人破坏。程序<%
SUBPrintLine(ByValstrLine)
strLine=server.HTMLEncode(strLine)
strLine=replace(strLine,"<%","<FONTCOLOR=#ff0000><%")
strLine=replace(strLine,"%>","%></FONT>")
strLine=replace(strLine,"<SCRIPT","<FONTCOLOR=#0000ff><SCRIPT",1,-1,1)
strLine=replace(strLine,"</SCRIPT>","</SCRIPT></FONT>",1,-1,1)
strLine=replace(strLine,"<!--","<FONTCOLOR=#008000><!--",1,-1,1)
strLine=replace(strLine,"-->","--></FONT>",1,-1,1)
Response.WritestrLine
ENDSUB
FunctionShowCode(filename)
DimstrFilename
DimFileObject,oInStream,strOutput
strFilename=filename
SetFileObject=Server.CreateObject("Scripting.FileSystemObject")
SetoInStream=FileObject.OpenTextFile(strFilename,1,0,0)
WhileNOToInStream.AtEndOfStream
strOutput=oInStream.ReadLine
CallPrintLine(strOutput)
Response.Write("<BR>")
Wend
endfunction
%>
<HTML>
<HEAD>
<TITLE>ASP源码扫瞄器</TITLE>
</HEAD>
<BODYBGCOLOR=#FFFFFF>
<formaction=viewcode.aspmethod=post>
请输出ASP文件名
<inputtype=filename=filename>
<inputtype=submitvalue="检察源程序">
</form>
<%
onerrorresumenext
dimfile
file=request.form("filename")
response.writefile&"源程序以下<hr>"
iftrim(file)""then
callshowcode(file)
endif
%>
</FONT>
</BODY>
</HTML>
</p>缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。 |
|