服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - ASP教程 - 使用ASP实现网站的“目录树”管理的代码

使用ASP实现网站的“目录树”管理的代码

2019-10-09 14:31asp代码网 ASP教程

使用ASP实现网站的“目录树”管理的代码

使用ASP实现网站的目录树

数据库结构(共使用了两个表)
1。tblCategory
字段名  类型   
Root   binary   说明树关或开(目录的根)
ID     自动编号 关键字
Sort   integer  识别该字段内容的整数(如果root是开状态sort为0)表示显示的目录的顺序
Name   text(255)可以包含html中的标识符
HREF   text(255) 允许空

2。tblPages
ID   自动编号 
Sort  integer 关键字
Name  text(255)
HREF  text(255)

3.default.htm
 

  1. <html> 
  2. <head> 
  3. <title>javascript Tree Control Template</title> 
  4. </head> 
  5. <frameset cols=""210,*""
  6. ?<frame src=""tree.asp"" name=""TOC""
  7. ?<frame src=""main.htm"" name=""basefrm""
  8. </frameset> 
  9. </html> 

4.main.htm
 

  1. <head><title></title></head> 
  2. <body> 
  3. <h2>Start Page</h2> 
  4. </body> 
  5. </html> 

5.tree.asp
 

  1. Set conn = Server.CreateObject(""ADODB.Connection""
  2. Set Rs = Server.CreateObject(""ADODB.Recordset""
  3. conn.open ""DRIVER=Microsoft Access Driver (*.mdb);DBQ="" & Server.MapPath(""toc.mdb""
  4.  
  5. strsql = ""SELECT tblCategory.Root, tblCategory.[ID], tblCategory.Sort AS CatSort, tblPages.sort AS LinkSort, tblCategory.[Name] AS CatName, tblCategory.HREF AS CatURL, tblPages.[Name] AS LinkName, tblPages.href AS LinkURL FROM tblCategory LEFT JOIN tblPages ON tblCategory.[ID] = tblPages.[ID] ORDER BY tblCategory.root ASC, tblCategory.Sort, tblPages.sort"" 
  6.  
  7. rs.open strsql, conn, 2, 2 
  8.  
  9. if not rs.eof then rs.movefirst 
  10. currentID = """" %> 
  11. <html> 
  12. <head> 
  13. <link rel=""stylesheet"" href=""ftie4style.css""
  14. <!-- Infrastructure code for the tree --> 
  15. <script src=""ftiens4.js""></script> 
  16. <!-- Execution of the code that actually builds the specific tree --> 
  17. <script> 
  18. USETEXTLINKS = 1 
  19. <% 
  20.     Do While Not Rs.EOF 
  21.        If Rs(""Root"") = True Then %> 
  22.             foldersTree = gFld(""<%= Rs(""CatName"") %>""""<%= Rs(""CatURL"") %>""
  23.     <% Else %> 
  24.             aux1 = insFld(foldersTree, gFld(""<%= Rs(""CatName"") %>""""<%= Rs(""CatURL"") %>"")) 
  25.     <% currentID = Rs(""ID""
  26.             savedID = Rs(""ID""
  27.             Do While currentID = savedID and not rs.eof 
  28.                 if Rs(""LinkName"") <> """" Then %> 
  29.                     insDoc(aux1, gLnk(0, ""<%= Rs(""LinkName"") %>""""<%= Rs(""LinkURL"") %>"")) 
  30.                     <% 
  31.                 end if 
  32.                 Rs.MoveNext 
  33.                 if not rs.eof then currentID = Rs(""ID""
  34.              Loop 
  35.          End If 
  36.         if currentID = """" then rs.movenext 
  37.     Loop %> 
  38. </script> 
  39. <script> 
  40. initializeDocument() 
  41. </script> 
  42. <base target=""basefrm""
  43. <title></title> 
  44. </head> 
  45. <body bgcolor=""white""
  46. </body> 
  47. </html> 

延伸 · 阅读

精彩推荐