?? links_del.asp
字號(hào):
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../Inc/AdminChk.asp"-->
<!--#include file="Conn.asp"-->
<%
Set rs=Server.CreateObject("Adodb.Recordset")
sql = "select * from link where id="&request("id")&""
rs.open sql,conn,1,3
if not rs.eof or rs.bof then
conn.execute("delete * from link where id="&request("id")&" ")
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
response.redirect("links_list.asp")
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -