<%@LANGUAGE="VBSCRIPT"%> <style type="text/css"> <!-- .style1 { font-size: 24px; color: #003399; } --> </style> <title>删除留言</title><div align="center" class="style1">删除留言 </div> <!--#include file="../Connections/liuyan.asp" --> <% ' *** Restrict Access To Page: Grant or deny access to this page MM_authorizedUsers="" MM_authFailedURL="login.asp" MM_grantAccess=false If Session("MM_Username") <> "" Then If (true Or CStr(Session("MM_UserAuthorization"))="") Or _ (InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1) Then MM_grantAccess = true End If End If If Not MM_grantAccess Then MM_qsChar = "?" If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar = "&" MM_referrer = Request.ServerVariables("URL") if (Len(Request.QueryString()) > 0) Then MM_referrer = MM_referrer & "?" & Request.QueryString() MM_authFailedURL = MM_authFailedURL & MM_qsChar & "accessdenied=" & Server.URLEncode(MM_referrer) Response.Redirect(MM_authFailedURL) End If %> <%
if(Request("id") <> "") then Command1__strid = Request("id")
%> <%
set Command1 = Server.CreateObject("ADODB.Command") Command1.ActiveConnection = MM_liuyan_STRING Command1.CommandText = "DELETE FROM liuyandata WHERE id=" + Replace(Command1__strid, "'", "''") + "" Command1.CommandType = 1 Command1.CommandTimeout = 0 Command1.Prepared = true Command1.Execute()
%> <% if(commdel_strid<>"")then set Commdel=Server.CreateObject("ADODB。Command") Commdel。ActiveConnection=MM_connliuyandb_STRING Commdel。CommandText="DELET FROM liuyandata WHERE id="+Replace(Commdel_strid,"''","''")+ "" Commdel。CommandType=4 Commdel。CommandTimeout=0 Commdel。Prepared=ture Commdel。Execute() end if '执行删除操作后,转到其他页面 reponse。Redirect("admin。asp") %> 这是留言本中的del.asp删除页面的代码,但我打开时却显示不了,怎么回事?