📄 shop_img_save.asp
字号:
<!--#include FILE="conn.asp"-->
<!--#include file="inc/UserChk.asp"-->
<!--#include file="inc/msgbox.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>修改标志</title>
</head>
<body>
<%
set rs=server.CreateObject("adodb.recordset")
strsql="select * from [dduser] where user_id="&session("user_id")&""
rs.open strsql,conn,1,3
shop_img=request("shop_img")
if shop_img="" then
shop_img="img/eshop.gif"
end if
rs("shop_img")=shop_img
rs.update
rs.close
set rs=nothing
call msgbox("店铺标志上传成功","GoUrl","user.asp")
response.End()
%>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -