?? del.asp
字號(hào):
<!--#include file="../Session.asp"-->
<%
Id = Request("Id")
Select case Request("action")
case "Fdel" 'F=first
conn.execute("Delete From BigClass where BigId = " & Id)
conn.execute("Delete From SmallClass where BigId = " & Id)
conn.execute("Delete From ThirdClass where BigId = " & Id)
conn.execute("Delete From Merchandise where BigId = " & Id)
Response.redirect "Default.asp"
Response.End
case "Sdel" 'S=second
conn.execute("Delete From SmallClass where SmallId = " & Id)
conn.execute("Delete From ThirdClass where SmallId = " & Id)
conn.execute("Delete From Merchandise where SmallId = " & Id)
Response.redirect "Default.asp"
Response.End
case "Tdel" 'T=third
conn.execute("Delete From ThirdClass where ThirdId = " & Id)
Response.redirect "Default.asp"
Response.End
End Select
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -