|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP在国内异常流行,因为国内大多使用的是盗版的Windows和盗版的SQLServer,而ASP+COM+SQLServer实际上也是一种不错的搭配,其性能也不输于PHP+MYSQL,特别是Windows系统和SQLServer都有图形界面,比APACHE和MYSQL易于维护,因此对于不重视知识产权的国家来说也是一种不错的选择。 数据库布局(共利用了两个表)
1.tblCategory
字段名范例
Rootbinary申明树关或开(目次的根)
ID主动编号关头字
Sortinteger辨认该字段内容的整数(假如root是开形态sort为0)暗示显现的目次的按次
Nametext(255)能够包括html中的标识符
HREFtext(255)同意空
2.tblPages
ID主动编号
Sortinteger关头字
Nametext(255)
HREFtext(255)
3.default.htm
〈html>
〈head>
〈title>JavaScriptTreeControlTemplate〈/title>
〈/head>
〈framesetcols="210,*">
?〈framesrc="tree.asp"name="TOC">
?〈framesrc="main.htm"name="basefrm">
〈/frameset>
〈/html>
4.main.htm
〈head>〈title>〈/title>〈/head>
〈body>
〈h2>StartPage〈/h2>
〈/body>
〈/html>
5.tree.asp
Setconn=Server.CreateObject("ADODB.Connection")
SetRs=Server.CreateObject("ADODB.Recordset")
conn.open"DRIVER=MicrosoftAccessDriver(*.mdb);DBQ="&Server.MapPath("toc.mdb")
strsql="SELECTtblCategory.Root,tblCategory.[ID],tblCategory.SortASCatSort,tblPages.sortASLinkSort,tblCategory.[Name]ASCatName,tblCategory.HREFASCatURL,tblPages.[Name]ASLinkName,tblPages.hrefASLinkURLFROMtblCategoryLEFTJOINtblPagesONtblCategory.[ID]=tblPages.[ID]ORDERBYtblCategory.rootASC,tblCategory.Sort,tblPages.sort"
rs.openstrsql,conn,2,2
ifnotrs.eofthenrs.movefirst
currentID=""%>
〈html>
〈head>
〈linkrel="stylesheet"href="ftie4style.CSS">
〈!--Infrastructurecodeforthetree-->
〈scriptsrc="ftiens4.js">〈/script>
〈!--Executionofthecodethatactuallybuildsthespecifictree-->
〈script>
USETEXTLINKS=1
〈%
DoWhileNotRs.EOF
IfRs("Root")=TrueThen%>
foldersTree=gFld("〈%=Rs("CatName")%>","〈%=Rs("CatURL")%>")
〈%Else%>
aux1=insFld(foldersTree,gFld("〈%=Rs("CatName")%>","〈%=Rs("CatURL")%>"))
〈%currentID=Rs("ID")
savedID=Rs("ID")
DoWhilecurrentID=savedIDandnotrs.eof
ifRs("LinkName")〈>""Then%>
insDoc(aux1,gLnk(0,"〈%=Rs("LinkName")%>","〈%=Rs("LinkURL")%>"))
〈%
endif
Rs.MoveNext
ifnotrs.eofthencurrentID=Rs("ID")
Loop
EndIf
ifcurrentID=""thenrs.movenext
Loop%>
〈/script>
〈script>
initializeDocument()
〈/script>
〈basetarget="basefrm">
〈title>〈/title>
〈/head>
〈bodybgcolor="white">
〈/body>
〈/html>asp可以使用微软的activeX使得网页功能无比强大,不过安全性也较差,而且是基于的windows服务器,所以性能稳定性也一般 |
|