📄 entercode.jsp
字号:
<%@ page import="com.hexiesoft.utils.StringUtils" %>
<%@ include file="/IncludeBeginMD.jsp" %>
<%
String lable1 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("LABEL_1");
String lable2 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("LABEL_2");
String title = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("TITLE");
String confirm1 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("CONFIRM_1");
String alert1 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("ALERT_1");
String alert2 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("ALERT_2");
String alert3 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("ALERT_3");
String alert4 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("ALERT_4");
String alert5 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("ALERT_5");
String alert6 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("ALERT_6");
String alert7 = (String) Configure.getConfigure(sIe_Language, "MarkAgencyInvoices").get("ALERT_7");
%>
<script language="javascript" src="<%=sResourcesPath%>/keyevent.js"></script>
<script language="javascript">
function check()
{
var blno = document.all.blno.value;
var sReturn_isEmpty = PopPage("/Billing/MarkAgencyInvoices/Check.jsp?blno=" + blno + "&rand=" + randomNumber(), "", "");
if (sReturn_isEmpty == "error1") {
alert('<%=alert2%>');
document.all.blno.focus();
return;
}
else if (sReturn_isEmpty == "error2") {
alert('<%=alert3%>');
document.all.blno.focus();
return;
}
else if (sReturn_isEmpty == "confirm") {
if (!(confirm('<%=confirm1%>'))) {
document.all.blno.focus();
return;
}
OpenComp("MarkAgencyInvoices", "/Billing/MarkAgencyInvoices/Mark.jsp", "blno=" + blno + "&rand=" + randomNumber(), "right", "");
self.returnValue = "OK";
self.close();
return;
} else {
OpenComp("MarkAgencyInvoices", "/Billing/MarkAgencyInvoices/Mark.jsp", "blno=" + blno + "&rand=" + randomNumber(), "right", "");
self.returnValue = "OK";
self.close();
return;
}
}
</script>
<title><%= title %>
</title>
<body bgcolor="#DCDCDC">
<table border="1" width=100% align="center" bordercolor='#999999' bordercolordark='#FFFFFF'>
<tr>
<td colspan="2"><%=title%>
</td>
</tr>
<tr>
<td nowrap align="right" class="black9pt" bgcolor="#D8D8AF" width=35%><%=lable1%>
</td>
<TD bgcolor="#F0F1DE"><INPUT TYPE="text" NAME="blno" size="6" maxlength="6"></TD>
</tr>
<tr>
<td colspan="2">
<input type="button" name="next"
value="<%=(String)Configure.getConfigure(sIe_Language,"Common").get("SUBMIT")%>"
onClick="javascript:check()"
style="font-size:9pt;padding-top:3;padding-left:5;padding-right:5;background-image:url(../../Resources/functionbg.gif); border: #DCDCDC; border-style: outset; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px"
border='1'>
<input type="button" name="Cancel"
value="<%=(String)Configure.getConfigure(sIe_Language,"Common").get("CANCEL")%>"
onClick="javascript:self.returnValue='_none_';self.close();"
style="font-size:9pt;padding-top:3;padding-left:5;padding-right:5;background-image:url(../../Resources/functionbg.gif); border: #DCDCDC; border-style: outset; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px"
border='1'>
</td>
</tr>
</table>
</body>
<%@ include file="/IncludeEnd.jsp" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -