www.gusucode.com > 雨点单用户免雨点单用户免费留言板 2.0 Build 080828 > MessageCheck.asp

    <%@ language="vbscript"%>
<%response.Expires = 0%>
<!--#include file="conn.asp"-->
<!--#include file="cookies.asp"-->
<%
MyChkgo=trim(request("chkNo"))
if MyChkgo="" then
	Call ShowError("未选择!")
end if
if request.QueryString("action")="checkgo" then
	conn.execute("update [message] set ischeck=1 where id in ("&MyChkgo&")")
	Call ShowErrorTo("审核成功!","index.asp")
end if
if request.QueryString("action")="mydel" then
	conn.execute("delete from [message] where id in ("&MyChkgo&")")
	Call ShowErrorTo("删除成功!","index.asp")
end if
%>