📄 popsetframe.asp
字号:
<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()
{
if(WorkArea.CheckInput())
WorkArea.Save();
}
function Cancel()
{
window.returnValue = "0";
if(WorkArea.HasChanged==true)
{
discard=confirm("您已经修改了某些信息,但尚未保存。放弃您所作的修改吗?");
if(discard==true)
{
window.close();
}
}
else
{
window.close();
}
}
//-->
</script>
<%
dim CurSettings
CurSettings=Request.QueryString("CurSettings")
%>
<html>
<head>
<title>设置到期提醒</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<form METHOD="post" name="frmData">
<table width="100%" border=0 align="center">
<tr height="25">
<td>
<b>到期提醒的频度和时间范围</b>
</td>
</tr>
<tr height=150>
<td>
<iframe id="WorkArea" name="WorkArea" style="visibility:visible" width="100%" height="100%" frameborder="0" scrolling="no" src="popset.asp?CurSettings=<%=CurSettings%>">
</iframe>
</td>
</tr>
<tr height=30 valign="bottom">
<td>
<table width="100%">
<tr>
<td width="20%"></td>
<td width="20%"><input id="btnSave" type="button" 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" 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>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -