deldis.asp

来自「游戏卡点销售充值程序,供大家研究学习游戏卡点销售充值程序,供大家研究学习」· ASP 代码 · 共 31 行

ASP
31
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../Connections/cardshop.asp" -->
<% 
id=Trim(Request.QueryString("id"))
gamename=session("gamename")

if id ="" then
Response.Write("系统错误,请重试!")
response.End()
end if
 %>
<%

if(id <> "") then Command1__a1 = id

%>
<%

set Command1 = Server.CreateObject("ADODB.Command")
Command1.ActiveConnection = MM_cardshop_STRING
Command1.CommandText = "DELETE FROM gamedistrict  WHERE id =" + Replace(Command1__a1, "'", "''") + ""
Command1.CommandType = 1
Command1.CommandTimeout = 0
Command1.Prepared = true
Command1.Execute()

%>
<% 
response.Redirect("addgame3.asp")

 %>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?