savestyle.asp

来自「后台管理系统」· ASP 代码 · 共 16 行

ASP
16
字号
<!--#include file="cookies.asp"-->
<!--#include file="conn.asp"-->
<%
if request("action")="save" then
sql="update product_small_sort set sort_width='"&request.form("sort_width")&"',sort_height='"&request.form("sort_height")&"',sort_rows="&cint(request.form("sort_rows"))&",sort_cols="&cint(request.form("sort_cols"))&" where  id="&request.form("sort_id") 
elseif request("action")="saveall" then
sql="update product_small_sort set sort_width='"&request.form("sort_width")&"',sort_height='"&request.form("sort_height")&"',sort_rows="&cint(request.form("sort_rows"))&",sort_cols="&cint(request.form("sort_cols"))
else
response.write("<script>window.alert('参数不足!');history.go(-1);</script>")
response.end()
end if
conn.execute sql
conn.close
set conn=nothing
response.write("<script>window.alert('页面布局修改成功!');history.go(-1);</script>")
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?