?? urldel.asp
字號(hào):
<%@LANGUAGE="VBScript" CODEPAGE="936"%>
<!--#include file="session.asp" -->
<!--#include file="conn.asp" -->
<!--#include file="CHAR.asp" -->
<%
UrlID=request.QueryString("id")
If UrlID="" or IsNumeric(UrlID)=False Then
response.Redirect("error.asp")
end if
strsql="select urluser from url where urlid="&UrlID
set rs=conn.execute(strsql)
if rs("urluser")=session("username") or session("usergroup")=3 then
strsql="delete from url where UrlID="&UrlID
conn.execute(strsql)
else
response.Redirect("error.asp")
end if
rs.close
set rs=nothing
CloseDatabase
response.Redirect("urlview.asp")
%>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -