|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp对于服务器的要求较高,一般的服务器如果访问量一大就垮了,不得不重启。树型布局|树型布局<!--
-----------[test]表天生剧本---------------
ifexists(select*fromdbo.sysobjectswhereid=object_id(N[dbo].[test])andOBJECTPROPERTY(id,NIsUserTable)=1)
droptable[dbo].[test]
GO
CREATETABLE[dbo].[test](
[id][int]IDENTITY(1,1)NOTNULL,
[str_note][nvarchar](50)COLLATEChinese_PRC_CI_ASNULL,
[father_id][int]NULL
)ON[PRIMARY]
GO
-->
<!--
***********************测试数据********************
[id][str_note][father_id]
[1][电脑书本][0]
[2][软件开辟][1]
[3][硬件维修][1]
[4][asp][2]
[5][php][2]
[6][jsp][2]
[7][html][2]
[8][显现器维修][3]
[9][主板维修][3]
[10][显卡维修][3]
[11][vbs基本][4]
[12][html基本][4]
[13][ado基本][4]
[14][do语句][11]
[15][for语句][11]
[16][select语句][11]
***************************************************
-->
<%
Dimstrconn,conn,rs,sql
strconn="Driver={sqlserver};server=localhost;database=wawavote;uid=sa;pwd=sa;"
Dimi
i=0
FunctionShowTree(parentID)
i=i+1
Dimrs
Setrs=Server.CreateObject("ADODB.RecordSet")
sql="SELECTid,str_note,father_id,(SELECTstr_noteFROMtestt2WHEREt2.id=t1.father_id)ASParentNameFROMtestt1WHEREt1.father_id="&Cint(parentID)
rs.opensql,strconn,1,1
DoWhileNotrs.Eof
forj=1toi
Response.Write("---")
next
Response.Write(rs(1)&"["&rs(3)&"]<br>")
ShowTreers(0)
i=i-1
rs.Movenext
Loop
rs.Close:Setrs=Nothing
EndFunction
SubShowTable(table)
Dimrs
Setrs=Server.CreateObject("ADODB.RecordSet")
sql="select*from"&trim(table)
rs.opensql,strconn,1,1
Fori=0Tors.Fields.Count-1
Response.Write("["&rs.fields(i).Name&"]")
next
Response.Write("<br>")
DoWhileNotrs.Eof
Fori=0Tors.Fields.Count-1
Response.Write("["&rs.fields(i).Value&"]")
next
Response.Write("<br>")
rs.MoveNext
Loop
rs.Close:Setrs=Nothing
Endsub
ShowTree(0)
ShowTable("test")
%>
作者Blog:http://blog.csdn.net/onlytiancai/
</p>大家可以自己去看一看.可以说看得想呕吐.以前有次下了个动网来看.里面连基本内置函数的保护措施(函数没防御性)都没有.难怪经常补这个补那个了.可能现在.NET版会好点吧 |
|