?? shenghe.asp
字號:
<!--#include file="../conn2.asp"-->
<!--#include file="set.asp"-->
<% id=int(request.querystring("id"))
action=request.querystring("action")
if action="shenghe" then
set rs=server.createobject("adodb.recordset")
sql="update link set [check]=1 where id="&id
rs.open sql,conn,1,3
elseif action="del" then
set rs=server.createobject("adodb.recordset")
sql="select * from link where id=" & id
rs.open sql,conn,3,3
rs.delete
rs.close
set rs=nothing
end if
response.redirect "link.asp"%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -