主頁 > 知識庫 > asp實現(xiàn)樹型結(jié)構(gòu)

asp實現(xiàn)樹型結(jié)構(gòu)

熱門標簽:為什么外呼系統(tǒng)需要預存話費呢 辦理400電話一年多少錢 外呼回撥系統(tǒng)圖片 蘭州智能語音電銷機器人功能 企數(shù)外呼系統(tǒng)能用多久 寧夏怎么申請400電話 咸陽銷售外呼系統(tǒng) 離線電子地圖標注軟件注冊 常用地圖標注范圍點
蛙蛙推薦:asp實現(xiàn)樹型結(jié)構(gòu)     選擇自 onlytiancai 的 Blog  
關(guān)鍵字   蛙蛙推薦:asp實現(xiàn)樹型結(jié)構(gòu) 
出處    

 !-- 
-----------[test]表生成腳本---------------
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[test]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[test]
GO

CREATE TABLE [dbo].[test] (
 [id] [int] IDENTITY (1, 1) NOT NULL ,
 [str_note] [nvarchar] (50) COLLATE Chinese_PRC_CI_AS NULL ,
 [father_id] [int] NULL 
) ON [PRIMARY]
GO
-->
!-- 
***********************測試數(shù)據(jù)********************
[id][str_note][father_id]
[1][電腦書籍][0]
[2][軟件開發(fā)][1]
[3][硬件維修][1]
[4][asp][2]
[5][php][2]
[6][jsp][2]
[7][html][2]
[8][顯示器維修][3]
[9][主板維修][3]
[10][顯卡維修][3]
[11][vbs基礎(chǔ)][4]
[12][html基礎(chǔ)][4]
[13][ado基礎(chǔ)][4]
[14][do語句][11]
[15][for語句][11]
[16][select語句][11]
***************************************************
-->
%
Dim strconn,conn,rs,sql
strconn="Driver={sql server};server=localhost;database=wawavote;uid=sa;pwd=sa;"
Dim i
i=0
Function ShowTree(parentID)
 i=i+1
 Dim rs
 Set rs = Server.CreateObject("ADODB.RecordSet")
 sql="SELECT id, str_note, father_id,(SELECT str_note FROM test t2 WHERE t2.id = t1.father_id) AS ParentName  FROM test t1 WHERE t1.father_id="Cint(parentID)
 rs.open sql,strconn,1,1
 Do While Not rs.Eof
  for j=1 to i
   Response.Write("---")
  next
  Response.Write(rs(1)"["rs(3)"]br>")
  ShowTree rs(0)
  i=i-1
 rs.Movenext
 Loop
 rs.Close:Set rs=Nothing 
End Function
Sub ShowTable(table)
 Dim rs
 Set rs = Server.CreateObject("ADODB.RecordSet")
 sql="select * from "trim(table)
 rs.open sql,strconn,1,1
 For i=0 To rs.Fields.Count-1
  Response.Write("["rs.fields(i).Name"]")
 next
 Response.Write("br>")
 Do While Not rs.Eof
  For i=0 To rs.Fields.Count-1
   Response.Write("["rs.fields(i).Value"]")
  next
  Response.Write("br>")
 rs.MoveNext
 Loop
 rs.Close:Set rs=Nothing 
End sub
ShowTree(0)
ShowTable("test")
%> 

 

標簽:溫州 昆明 泰州 麗江 咸陽 昌都 家電維修 鐵嶺

巨人網(wǎng)絡(luò)通訊聲明:本文標題《asp實現(xiàn)樹型結(jié)構(gòu)》,本文關(guān)鍵詞  asp,實現(xiàn),樹型,結(jié)構(gòu),asp,實現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp實現(xiàn)樹型結(jié)構(gòu)》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp實現(xiàn)樹型結(jié)構(gòu)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章