用排序串字段实现树状结构(例程——显示树)

2016-01-29 17:59 45 1 收藏

用排序串字段实现树状结构(例程——显示树),用排序串字段实现树状结构(例程——显示树)

【 tulaoshi.com - 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+1guestrs.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

来源:http://www.tulaoshi.com/n/20160129/1503887.html

延伸阅读
标签: Web开发
树型结构是一类应用非常广泛的数据结构。人类社会中宗族的族谱和现代企业的组织形式都是树型结构。在计算机领域中,文件系统中文件的管理结构、存储器管理中的页表、数据库中的索引等也都是树型结构。随着Internet的飞速发展,树型结构在浏览器/服务器(Browser/Server,简称B/S)应用系统的应用也越来越广泛。 目前,在互联网上广泛存在、...
熟悉MS-Windows和XWindowSystem事件驱动编程模型的开发人员,习惯于传递在某种事件发生时调用(即“回调”)的函数指针。Java的面向对象模型目前并不支持方法指针,这样似乎就不可能使用这种很好的机制。但我们并不是一点办法都没有! !-- frame contents -- !-- /frame contents -- Java的接口支持提供了一种获得回调的等价功...
标签: ASP
  数据库设计中order_value是用来排序的,具体实现是    **注意以下的讨论是对一个主题而言,就是对一棵树而言!    如果加一新贴那么  order_value=0    如果跟贴查比父贴  order_value大的order_value    如果有假设为next_value,那么新帖的 &nb...
标签: Web开发
SCRIPT type="text/javascript" function defaultSort(){ var a="zhishi,english,我lai,lai了,中国,测试,房地产"; a=a.split(","); a.sort(); alert(a); } function cusSort(){ var a="zhishi,english,我lai,lai了,中国,测试,房地产"; a=a.split(","); a.sort(function(a,b){   return a.localeCompare(b); }); alert(a); } /SCRIPT a hre...
标签: ASP
  bigeagle】 于 2000-12-6 14:43:38 加贴在 Joy ASP ↑: 下面这种方法是大怪兽和怡红公子现在采用的方法 create table forum ( ID int NOT NULL IDENTITY,/*帖子序列号*/ rootID int NOT NULL, /*根帖子序列号*/ parentID int NOT NULL default=0,/*双亲帖子序列号*/ indent tinyint,/*缩进*/ order tinyint,/*同主题帖子排序*/ user...

经验教程

638

收藏

99
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部