|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp可以轻松地实现对页面内容的动态控制,根据不同的浏览者,显示不同的页面内容。而浏览者一点觉察不出来,就像为他专门制作的页面一样。使用各种各样的组件,asp可以完成无比强大的功能。显现2.dele.asp
<%wname=trim(Request.QueryString("name"))name为要删除的文章对应的文本文件名"wz-n.asp"(n=0,1,2,...),同
时也是从数据库中的wname字段得来
setdbconn=server.createobject("adodb.connection")
conpath="DBQ="&server.mappath("wzozg.mdb")
dbconn.Open"DRIVER={MicrosoftAccessDriver(*.mdb)};"&conpath
sql="deletefromozgwherewname="&wname&""删除数据库中文章信息
dbconn.execute(sql)
dbconn.close
thisfile=server.mappath(wname)
Setfs=Server.CreateObject("Scripting.FileSystemObject")
iffs.FileExists(thisfile)then
fs.DeleteFilethisfile,True删除对应的文本文件"wz-n.asp"
endif
Setfs=nothing
%>
3.showwz.asp
<%setdbconn=server.createobject("adodb.connection")
conpath="DBQ="&server.mappath("../../db/wzozg.mdb")
dbconn.Open"DRIVER={MicrosoftAccessDriver(*.mdb)};"&conpath
setrs=server.createobject("adodb.recordset")
rs.opensql,dbconn,3,1
number=rs.recordcount%>把一切文章一样平常信息读进纪录集rs中
%>
4.wz.asp
<%wname=Request.QueryString("wname")从showwz.asp得来的要详细显现内容的那篇文章的对应的文本文件名
setdbconn=server.createobject("adodb.connection")
conpath="DBQ="&server.mappath("wzozg.mdb")
dbconn.Open"DRIVER={MicrosoftAccessDriver(*.mdb)};"&conpath
sql="updateozgsetwcount=wcount+1wherewname="&wname&""
dbconn.Execute(sql)
sql="selectwauth,wname,wcontent,wsource,wauthfromozgwherewid="&id&""
setrs=dbconn.Execute(sql)把要显现的那篇文章一样平常信息读进纪录会合
filename=server.mappath(wname)
rs.close
dbconn.Close
Setfs=CreateObject("Scripting.FileSystemObject")
Setthisfile=fs.OpenTextFile(filename,1,False)
dowhilenotthisfile.AtEndOfStream
thisline=thisfile.readline
ifthisline""then
thisline=server.HTMLENCODE(thisline)
response.write"<p>"&thisline&"</p>"
endif
loop
thisfile.close
setfs=nothing
%>
---------------------------------------------------
writenbyaspboyandpoweredbyhttp://easp.126.com
</p>对于中小型web应用来说,php有很强的竞争力,linux+apache+mysql+php(lamp)的组合几乎可以胜任绝大多数网站的解决方案,对于大型应用来讲,对于系统架构要求更高,需要有成熟的框架支持,jsp的struts是个不错的框架,国内介绍它的资料也非常多,应用逐渐广泛起来。asp就不用说了, |
|