📄 setting_other.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!-- #include file="include/adovbs.inc" -->
<!--#include file="include/dataconn.asp" -->
<!-- #include file="include/checksession.asp" -->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from Setting_other "
rs.open sql,conn,1,1
j=rs.recordcount
%>
<html>
<head>
<title>申请表设置</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="include/e1.css">
</head>
<script>
function makecompute()
{
return(confirm("此操作将更新系统设置参数,修改设置参数后,必须以管理员身份重新登陆,这样参数设置才有效\n你确定要继续吗?"))
}
</script>
<body>
<form name="form1" method="post" action="Setting_otherCheck.asp">
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#AAAAAA">
<tr><td>
<table width="100%" border="0" cellspacing="1" cellpadding="5">
<tr bgcolor="#CCDDEE">
<td width="30%" height="30"><div align="center">名称</div></td>
<td width="27%" height="30" bgcolor="#CCDDEE"><div align="center">值</div></td>
<td width="40%" bgcolor="#CCDDEE"><div align="center">说明</div></td>
</tr>
<%while not rs.eof%>
<tr bgcolor="#FFFFFF">
<td><div align="center">
<% =rs("FuncDescription")%>
</div></td>
<td><div align="center">
<input name="value_<% =rs("FuncName")%>" type="text" value="<% =rs("FuncValue")%>" size="25">
</div></td>
<td><% =rs("FuncInfo")%> </td>
</tr>
<% rs.movenext
wend%>
</table>
</td></tr></table><br>
<table width="50%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center">
<input type="submit" name="Submit" value="提交" onClick="javascript:return makecompute();" class="b02">
</div></td>
<td> <div align="left">
<input type="reset" name="Submit2" value="取消" class="b02">
</div></td>
</tr>
</table>
<p><font color="#FF0000">*修改设置参数后,必须<font size="3"><strong>重新登陆</strong></font>,这样参数设置才有效</font></p>
<p><font color="#FF0000">*<font color="#000000">奖金的参数修改后请修改相应的奖励计划</font></font></p>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -