程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP技巧 >> 用排序串字段實現樹狀結構(例程——顯示樹)

用排序串字段實現樹狀結構(例程——顯示樹)

編輯:ASP技巧

程序index.ASP
功能:顯示目錄樹

<!-- #include file="lybcon.inc" --><%
pageno=request("pageno")
searchtype=request("searchtype")
searchnr=rtrim(request("searchnr"))
set guestconn=Server.CreateObject("ADODB.connection")
guestconn.Open lybstr
set guestrs=server.createobject("ADODB.recordset")
sqlstr="SELECT * FROM guestbook"
if searchnr<>"" then sqlstr=sqlstr&" where "&searchtype&" like '%%"&replace(searchnr,"'","''")&"%%'"
sqlstr=sqlstr&" order by rootid+(1-sign(rootid))*lybid desc,orderstr,lybid desc"
guestrs.open sqlstr,guestconn,1,1
rowcount=25
if pageno="" then pageno=1
if not guestrs.eof then
  if IsNumeric(pageno) then
    guestrs.pagesize=rowcount
    if pageno+1>guestrs.pagecount+1 then pageno=guestrs.pagecount
  else
    pageno=1
  end if
  guestrs.AbsolutePage=pageno
else
  pageno=1
end if
%><Html>
<head><title>軟件使用留言薄</title>
<style TYPE="text/CSS">
<!--
a {  text-decoration: none}
body {line-height:18px;font-size:9pt;font-family:宋體}
a:hover {color:#FF0000;text-decoration:none}
.submit {line-height:9pt;font-size:9pt;font-family:宋體}
.submit1 {line-height:8pt;font-size:8pt;font-family:宋體}
.selectform {font-family: 宋體; font-size: 9pt;background-color:ffE4E4}
td {font-family: 宋體; font-size: 9pt;background-color:ECF7FF}
.td1 {font-family: 宋體; font-size: 9pt;background-color:A2C8F2}
.td2 {font-family: 宋體; font-size: 9pt;background-color:E9EDE0}
.small1 {font-family: 宋體; font-size: 9pt;background-color:ffffff;line-height:9pt}
-->
</style>
<script language="JavaScript1.2">
function d(sp,t,a,d,ti,l,id,rid,pn)
{
document.write("<tr><td>"+sp+"<a href='disPRec.ASP?
keyid="+id+"&rootid="+rid+"&pageno="+pn+"'>"+t+"</a></td>");
document.write("<td align=right>"+a+" </td>");
document.write("<td nowrap align=center>"+d+" "+ti+"</td>");
document.write("<td align=right>"+l+" </td>");
document.write("<td align=right>"+id+" </td>");
document.write("</tr>");
}
</script>
</head>
<body topmargin=16>
<form name='index' method='POST' action='index.ASP'>
<table width=100% align=center>
  <tr>
   <td align=center style='font-size:16px;background-color:ffffff;color:red' height=35 valign=top>軟件使用
留言薄</td>
   <td align=center colspan=3 style='font-size:13px;background-color:ffffff' valign='bottom'>共<font
style='font-size:16px;color:red'><% =guestrs.recordcount %></font>條留言<font style='font-
size:16px;color:red'><% =guestrs.pagecount %></font>頁目前第<font style='font-size:16px;color:red'><%
=pageno %></font>頁</td>
   <td style='background-color:ffffff' valign=bottom><a href="/wen/swuselyb/index.ASP">舊留言薄
</a></td></tr>
  <tr>
   <td class='td2' align='center'>搜索貼子
    <select name='searchtype' class='small1'>
     <option value='guestname' <% if searchtype="guestname" then response.write("selected") %>>貼子作者
</opion>
     <option value='guestcomm' <% if searchtype="guestcomm" then response.write("selected") %>>貼子內容
</opion>
    </select> <input type='text' name='searchnr' size=14 class='small1' value='<% =searchnr %>'> <a
href='Javascript:document.index.submit();'>開始搜索</a>
   </td>
   <td colspan=3 class='td2' align='center'><% if pageno+1>2 then %><a
href='Javascript:document.index.pageno.value--;document.index.submit();'>上一頁</a><% else %>上一頁<% end
if %>  <% if pageno+1<guestrs.pagecount+1 then %><a
href='Javascript:document.index.pageno.value++;document.index.submit();'>下一頁</a><% else %>下一頁<% end
if %>  到<input type='text' name='pageno' size=6 class='small1' value=<% =pageno %>>頁</td>
   <td class='td2' align=center><a href='revert.ASP?type=post'>發貼子</a></td>
  </tr>
  <tr >
   <td align=center class='td1'>留言標題</td>
   <td align=center width=70 class='td1'><img src='edit.gif'>作  者</td>
   <td align=center width=100 class='td1'>發表時間</td>
   <td align=center width=60 class='td1' nowrap>貼子字數</td>
   <td align=center width=60 class='td1' nowrap>貼子序號</td>
  </tr>
<%
do while true
  if guestrs.eof then exit do
  if guestrs("rootid")=0 then exit do
  guestrs.movenext
loop
do while not guestrs.eof and rowcount>0 %><script>d('<% =replace(space(2*len(guestrs
("orderstr")))," "," ") %>','<% =guestrs("guestitle") %>','<% =guestrs("guestname") %>','<% =guestrs
("putdate") %>','<% =guestrs("puttime") %>',<% =len(guestrs("guestcomm")) %>,<% =guestrs("lybid") %>,<%
=guestrs("rootid") %>,<% =pageno %>)</script>
<%
rowcount=rowcount-1
guestrs.movenext
if not guestrs.eof then
  if guestrs("rootid")<>0 and rowcount=0 then rowcount=1
end if
loop
guestrs.close
set guestrs=nothing
guestconn.close
set guestconn=nothing
%>
</table>
</form>
<br><br><br>
</body>
</Html>

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved