📄 fankui_save.asp
字号:
<!--#include file =conn.asp-->
<!--#include file="admin/ChkURL.asp"-->
<%
if session("baoxiuuser_id")="" then
response.write "<script language=jscript>alert('对不起,您不是本站的注册用户或没有登陆系统!');window.location.href='index.asp';</script>"
response.end
end if
'--------------------------
baoxiu_id=request("baoxiu_id")
user_name=request("user_name")
weixiu_zhuangtai=request("weixiu_zhuangtai")
weixiu_main=request("weixiu_main")
weixiu_time=date
'----------------------------
set rs=server.createobject("adodb.recordset")
sql="select * from baoxiu where baoxiu_id=" & baoxiu_id
rs.open sql,conn,3,2
rs("user_name")=user_name
rs("weixiu_zhuangtai")=weixiu_zhuangtai
rs("weixiu_main")=weixiu_main
rs("weixiu_time")=weixiu_time
rs.update
rs.close
set rs=nothing
conn.close
set conn=nothing
response.redirect "baoxiu_list.asp?baoxiu_id=" & baoxiu_id
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -