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

📄 step3.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 LocalDC()
{
	return true;
}

function Pre() 
{
	window.navigate("step2.asp");
}

function Next()
{
	if(LocalDC()==true)
	{
		WorkArea.Next();
	}
}

function Cancel() 
{
	var discard;
	discard=confirm(document.all.btnCancel.value+"报表设计吗?");
	if(discard==true)
	{
		if(NewReport.value==1)
		{
			DisableButton();
			document.frmData.target ="SaveArea";
			document.frmData.action="../cancel.asp";
			document.frmData.submit();
		}
		else
		{
			alert("尚未完成设计,暂不能查询和生成报表。");
			parent.window.returnValue = true;
			parent.window.close();
		}
	}
}

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

function DisableButton() 
{
	btnCancel.disabled =true;
	btnPre.disabled =true;
	btnNext.disabled =true;
}

function EnableButton() 
{
	btnCancel.disabled =false;
	btnPre.disabled =false;
	btnNext.disabled =false;
}

//-->
</script>
<%
	dim NewReport,Cancel
	NewReport=Request.Cookies("System")("NewReport")
	if NewReport="1" then
		Cancel="取消"
	else
		Cancel="退出"
	end if
%>
<html>
	<head>
		<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>
					<b>第3步:选择分类字段、分类方式</b>
				</td>
			</tr>
			<tr>
				<td>
					所谓分类就是按字段值的不同,将数据表的记录分别汇聚起来。
				</td>
			</tr>
			<tr>
				<td>
					<table width="95%" 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="43%" bgcolor="white"><b>分类方式</b></td>
						</tr>
					</table>
				</td>
			</tr>
			<tr height="196">
				<td>
					<iframe id="WorkArea" name="WorkArea" style="visibility:visible" width="100%" height="100%" frameborder="0" src="setgroup.asp">
					</iframe>
				</td>
			</tr>
			<tr height="42" valign="bottom">
				<td>
					<table align="center" width="50%">
						<tr>
							<td width="33%"><input id="btnCancel" type="button" value="<%=Cancel%>" name="btnCancel" style="cursor:hand; WIDTH: 65px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Cancel()"></td>
							<td width="33%"><input id="btnPre" type="button" value="上一步" name="btnPre" style="cursor:hand; WIDTH: 65px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Pre()"></td>
							<td width="33%"><input id="btnNext" type="button" disabled value="下一步" name="btnNext" style="cursor:hand; WIDTH: 65px; HEIGHT: 24px" LANGUAGE="javascript" onclick="return Next()"></td>
						</tr>
					</table>
				</td>
			</tr>
			<form METHOD="post" name="frmData">
			</form>
			<input TYPE="hidden" NAME="NewReport" value="<%=NewReport%>">
		</table>
	</body>                                                                                                           
</html>

⌨️ 快捷键说明

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