?? ly_del.asp
字號:
<!--#include file=pass.asp-->
<!--#include file="conn.asp"-->
<%
all_id=trim(request("selectedid"))
if instr(all_id,",")=0 then
sql="delete from [zixun] where id="&all_id
conn.execute(sql)
else
str=split(all_id,",")
for i=0 to ubound(str)
sql2="delete from [zixun] where id="&cint(str(i))
conn.execute(sql2)
next
end if
response.write"<script language='javascript'>alert('刪除成功!');window.location.href='ad_zx.asp';</script>"
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -