|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。还无法完全实现一些企业级的功能:完全的集群、负载均横。<%
Head="搜刮"
SearchString=Request("SearchString")
count=0
把以后目次的实践路径转换为假造路径
FunctionUnMapPath(Path)
UnMapPath=Replace(Mid(Path,Len(Server.MapPath("/"))+1),"","/")
EndFunction
FunctionSearchFile(f,s,title)
Setfo=fs.OpenTextFile(f)
content=fo.ReadAll读全体文本到content
fo.Close
SearchFile=InStr(1,content,S,vbTextCompare)>0从第一个字符入手下手反省content内里是不是有S
IfSearchFileThen假如有,则提出文件TITLE存进变量
pos1=InStr(1,content,"<TITLE>",vbTextCompare)
pos2=InStr(1,content,"</TITLE>",vbTextCompare)
title=""
Ifpos1>0Andpos2>0Then取TITLE标志两头的字符
title=Mid(content,pos1+7,pos2-pos1-7)
EndIf
EndIf
EndFunction
FunctionFileLink(f,title)
vPath=UnMapPath(f.Path)取路径
Iftitle=""Thentitle=f.Name做链接
FileLink="<AHREF="""&vPath&""">"&title&"</A>"
FileLink="<UL>・"&FileLink&"</UL>"
EndFunction
SubSearchFolder(fd,s)
found=False
ForeachfInfd.Files
pos=InStrRev(f.Path,".")
Ifpos>0Then
ext=Mid(f.Path,pos+1)
Else
ext=""
EndIf
IfLCase(ext)="htm"Then显现扩大名字为HTM的文件
IfSearchFile(f,s,title)Then
Response.WriteFileLink(f,title)
count=count+1
Response.Writecstr(count)
EndIf
EndIf
Next
ForeachsfdInfd.SubFolders
SearchFoldersfd,s
Next
EndSub
%>
<html>
<head>
<metahttp-equiv="Content-Type"
content="text/html;charset=gb_2312-80">
<metaname="GENERATOR"content="MicrosoftFrontPageExpress2.0">
<title><%=Head%></title>
</head>
<bodybgcolor="#FFFFFF">
<h1><%=Head%></h1>
<hr>
<formaction="search.asp"method="Get">
<p>请输出欲搜刮的内容:<inputtype="text"
size="20"name="SearchString"value="<%=SearchString%>"><input
type="submit"value="搜刮"></p>
</form>
<%
Setfs=Server.CreateObject("Scripting.FileSystemObject")
Setfd=fs.GetFolder(Server.MapPath("/"))设置入手下手搜刮的路径!
IfSearchString""Then
Response.Write"<H2>搜刮<fontcolor=red>"&SearchString&"</font>了局以下:</H2><P>"
SearchFolderfd,SearchString
EndIf
%>
<hr>
</body>
</html>
</p>ASP由于使用了COM组件所以它会变的十分强大,但是这样的强大由于WindowsNT系统最初的设计问题而会引发大量的安全问题。只要在这样的组件或是操作中一不注意,哪么外部攻击就可以取得相当高的权限而导致网站瘫痪或者数据丢失; |
|