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

用排序串字段實現樹狀結構(例程——刪除貼子)

編輯:ASP技巧

程序名稱:delrec.ASP
程序功能:刪除貼子(剪枝)

<!-- #include file="lybcon.inc" -->
<%
flag=request("flag")
keyid=request("keyid")
pageno=request("pageno")
passWord=request.form("passWord")
if flag="1" then
  if passWord="你的管理密碼" then
   set guestconn=Server.CreateObject("ADODB.connection")
   guestconn.Open lybstr
   set cm = Server.CreateObject("ADODB.Command")
   Set cm.ActiveConnection = guestconn
   cm.CommandText = "lybdel"
   cm.CommandType = 4
   set p = cm.Parameters
   p.Append cm.CreateParameter("@keyid",3,1,4)
   cm("@keyid")=keyid
   cm.execute
   guestconn.close
   set guestconn=nothing
   response.redirect "index.ASP?pageno="&pageno
  end if
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>
</head>
<body topmargin=16 background='topbg.gif'>
<br><br><br>
<form name='manage' action='delrec.ASP' method='post'>
<input type=hidden name='flag' value='1'>
<input type=hidden name='keyid' value='<% =keyid %>'>
<input type=hidden name='pageno' value='<% =pageno %>'>
<table width=80% align=center>
  <tr>
   <td align=right>請輸入管理密碼:</td>
  <td align=left><input type='password' name='passWord' size=20 class='submit'></td>
  <td align=center><input type='submit' value='刪除該留言' class='submit'></td>
</tr>
</table>
</form>

 

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