📄 step2.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("../designstep1.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>第2步:选择分类字段、分类方式</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="20%" bgcolor="white"><b>名称</b></td>
<td width="15%" bgcolor="white"><b>数据类型</b></td>
<td width="40%" bgcolor="white"><b>分类方式</b></td>
<td width="15%" bgcolor=white><b>优先顺序</b></td>
</tr>
</table>
</td>
</tr>
<tr height="195">
<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 + -