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

📄 setsearchframe.asp

📁 学生档案与成绩管理(1)学生档案管理:记录每个学生的档案信息
💻 ASP
字号:
<!-- #include file = "../include/asphead.asp" -->
<!-- #include file = "../include/function.asp" -->
<%CheckUser()%>
<link href="../include/main.css" rel="stylesheet" type="text/css">
<script src="../include/function.js" type="text/javascript"></script>

<script ID="clientEventHandlersJS" LANGUAGE="javascript">
<!--

function Save() 
{
	WorkArea.Save();
}

function Cancel() 
{
	window.returnValue = "0";
	if(WorkArea.HasChanged==true)
	{
		discard=confirm("您已经修改了某些信息,但尚未保存。放弃您所作的修改吗?");
		if(discard==true)
		{
			window.close();
		}
	}
	else
	{
		window.close();
	}
}

//-->
</script>
<%
	CurItems=Request.QueryString("CurItems")
	MultiSelectItems=Request.QueryString("MultiSelectItems")
	dim WExcel
	set WExcel=server.CreateObject("WExcel.Sheet")
	dim SheetID
	SheetID=Request.Cookies("Temp")("SheetID")
	dim Exist
	Exist=WExcel.SheetExist(cint(UserID),cint(SheetID))
	CheckErr
	if Exist=false then
		Response.Redirect "/hcgis/notfound.asp?Name=数据表&Depth=2"
	end if
%>
<html>
	<head>
		<title>更多查询条件</title>
		<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
	</head>
	<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
		<table width="100%" border=0 align="center">
			<tr height="35">
				<td colspan=5>
					<b>选择查询字段</b>
				</td>
			</tr>
			<tr>
				<td colspan=4>
					<table width=100% cellspacing=1 bgcolor=999999>
						<tr>
							<td width="10%" bgcolor=white><b>选择</b></td>
							<td width="27%" bgcolor=white><b>名称</b></td>
							<td width="20%" bgcolor=white><b>数据类型</b></td>
							<td width="20%" bgcolor=white><b>单选/多选</b></td>
							<td width="23%" bgcolor=white><b>说明</b></td>
						</tr>
					</table>
				</td>
			</tr>
			<tr height=275>
				<td colspan=4>
					<iframe id="WorkArea" name="WorkArea" style="visibility:visible" width="100%" height="100%" frameborder="0" src="setsearch.asp?CurItems=<%=CurItems%>&MultiSelectItems=<%=MultiSelectItems%>">
					</iframe>
				</td>
			</tr>
			<tr height=40 valign="bottom">
				<td colspan="4">
					<table width="100%">
						<tr>
							<td width="20%"></td>
							<td width="20%"><input id="btnSave" type="button" disabled value="确定" name="btnSave" style="cursor:hand; WIDTH: 50px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Save()"></td>
							<td width="20%"></td>
							<td width="20%"><input id="btnCancel" type="button" disabled value="取消" name="btnCancel" style="cursor:hand; WIDTH: 50px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Cancel()"></td>
							<td width="20%"></td>
						</tr>
					</table>
				</td>
			</tr>
		</table>
	</body>                                                                                                           
</html>

⌨️ 快捷键说明

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