📄 modi_line_sort.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%Option Explicit%>
<!--#include file="chk.asp"-->
<!--#include file="db_conn.asp"-->
<!--#include file="../my_libs/my_request.asp"-->
<!--#include file="../my_libs/my_lib.asp"-->
<%
dim id,sql,rs,arrlist(2)
id=my_request("id",1)
if id="" or isnull(id) or (isNumeric(id)=false) then
call wnourl("参数错误")
else
id=cint(id)
sql="select zm_linesort,zm_flag,zm_content from ssort_line where sort_id="&id
set rs=conn.execute (sql)
arrlist(0)=rs(0)
arrlist(1)=rs(1)
arrlist(2)=rs(2)
rs.close
set rs=nothing
conn.close
set conn=nothing
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
<link rel="stylesheet" type="text/css" href="style_admin.css" />
</head>
<body>
<table border="1" width="100%" id="table1">
<form action=pro_line_sort.asp method=post>
<tr>
<td width="976" colspan="2" class="top_td">旅游线路类别修改</td>
</tr>
<tr>
<td width="321" align="right" class="left_td">线路类别名称:</td>
<td width="649">
<input type="text" name="ssort_linesort" size="32" maxlength="100" value="<%=arrlist(0)%>"></td>
</tr>
<tr>
<td width="321" align="right" class="left_td">排序:</td>
<td width="649">
<input type="text" name="ssort_flag" size="4" maxlength="4" value="<%=arrlist(1)%>"><input type="hidden" name="id" value="<%=id%>"><input type="hidden" name="flag" value="save"></td>
</tr>
<tr>
<td width="321" align="right" class="left_td">备注说明:</td>
<td width="649"><textarea rows="6" name="ssort_content" cols="31"><%=arrlist(2)%></textarea></td>
</tr>
<tr>
<td width="970" align="right" colspan="2">
<p align="center"><input type="submit" value="确定修改" name="submit"></td>
</tr></form>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -