⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setup.asp

📁 === ==ASP销售管理系统
💻 ASP
字号:
<!--#include file="config.asp"-->
<!--#include file="inc/check_login.asp"-->
<!--#include file="inc/functions.asp"-->
<%
'页面风格
PageStyle = request.Cookies("PageStyle")
if len(PageStyle) <> 7 then PageStyle = "#6699CC"

'每页显示记录条数
PageSize = request.Cookies("PageSize")
if not IsNot(PageSize,"n") then PageSize = DefaultPageSize

'起始展开工作目录
StartMenu = request.Cookies("StartMenu")

function IsSelected(item,value)
	if CStr(item) = CStr(value) then
		IsSelected = " selected"
	else
		IsSelected = ""
	end if
end function
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
	<title>Untitled</title>
	<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
	<LINK rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form action="setup_exe.asp" method="post" name="frm" id="frm">
个性设置
<hr size=1>
<table border=0 cellpadding=1 cellspacing=1 width="100%">
<tr bgcolor="#EFEFEF">
	<td>项目</td>
	<td>参数</td>
	<td>说明</td>
</tr>
<tr>
	<td>设置起始展开工作目录</td>
	<td>
	<select name="StartMenu" size="1">
		<option value="" <%=IsSelected(StartMenu,"")%>>欢迎页&nbsp;&nbsp;&nbsp;&nbsp;</option>
		<option value="customer" <%=IsSelected(StartMenu,"customer")%>>客户管理</option>
		<option value="project" <%=IsSelected(StartMenu,"project")%>>项目管理</option>
		<option value="contract" <%=IsSelected(StartMenu,"contract")%>>合同管理</option>
		<option value="document" <%=IsSelected(StartMenu,"document")%>>文档管理</option>
		<option value="employee" <%=IsSelected(StartMenu,"employee")%>>人事管理</option>
	</select>
	</td>
	<td>进入系统时将进入该模块</td>
</tr>
<tr bgcolor="#EFEFEF">
	<td>每页显示记录数</td>
	<td>
	<select name="PageSize" size="1">
		<option value="<%=PageSize%>" selected><%=PageSize%>&nbsp;&nbsp;</option>
		<script language="JavaScript" type="text/javascript">
			for(i=3;i<=500;i++){
				document.write('<option value=' + i + '>' + i + '</option>');
			}
		</script>
	</select>
	</td>
	<td>浏览或者查询时每页显示的记录条数</td>
</tr>
<!--tr>
	<td valign="top">定制我的工作目录</td>
	<td>
	<input type="checkbox" name="My_Application_ID" value="7000000">客户管理<br>
	<input type="checkbox" name="My_Application_ID" value="7000000">项目管理<br>
	<input type="checkbox" name="My_Application_ID" value="7000000">合同管理<br>
	<input type="checkbox" name="My_Application_ID" value="7000000">文档管理<br>
	<input type="checkbox" name="My_Application_ID" value="7000000">人事管理
	</td>
	<td valign="top">在工作目录中只显示我经常使用的模块</td>
</tr-->
</table>
<input type="submit" name="Submit" value="保存设置">
</form>
</body>
</html>

⌨️ 快捷键说明

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