|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。利用ASP完成网站的目次树
原本想多翻译些器材出来的,可是比来愈来愈忙了,今后我只管多贴些
短小的代码出来,翻译是愈来愈没空完成了。呵呵。
数据库布局(共利用了两个表)
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>
</p>asp,你就只能等着微软给你解决,它不乐意你就只好悲催。而且asp跑在windows服务器上,windows服务器跟linux比起来简直弱爆了! |
|