You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 lines
1.5 KiB

<%
//程序名称:FinPayDayInit.jsp
//程序功能:
//创建日期:2003-05-13 15:39:06
//创建人 :CrtHtml程序创建
//更新记录: 更新人 更新日期 更新原因/内容
%>
<%--用户校验类--%>
<SCRIPT src="../common/javascript/Common.js"></SCRIPT>
<%
//添加页面控件的初始化。
GlobalInput globalInput = (GlobalInput)session.getAttribute("GI");
if(globalInput == null) {
out.println("session has expired");
return;
}
//String strOperator = globalInput.Operator;
%>
<%
//添加页面控件的初始化。
%>
<script language="JavaScript">
function initInpBox()
{
try
{
document.all('StartDay').value = '';
document.all('EndDay').value = '';
}
catch(ex)
{
i18nAlert("{0}函数中发生异常:初始化界面错误!", "LIS-01177", "FinPayDayInit.jsp-->InitInpBox");
}
}
function initSelBox()
{
try
{
// setOption("t_sex","0=男&1=女&2=不详");
// setOption("sex","0=男&1=女&2=不详");
// setOption("reduce_flag","0=正常状态&1=减额交清");
// setOption("pad_flag","0=正常&1=垫交");
}
catch(ex)
{
i18nAlert("{0}函数中发生异常:初始化界面错误!", "LIS-01177", "FinPayDayInit.jsp-->InitSelBox");
}
}
function initForm()
{
try
{
initInpBox();
initSelBox();
}
catch(re)
{
i18nAlert("{0}函数中发生异常:初始化界面错误!", "LIS-01177", "FinPayDayInit.jsp-->InitForm");
}
}
</script>