shop_img_save.asp
来自「校园二手交易系统,具有完备的后台操作以及应用功能!」· ASP 代码 · 共 34 行
ASP
34 行
<!--#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 + =
减小字号Ctrl + -
显示快捷键?