📄 discontinue.jsp
字号:
<%@ page contentType="text/html; charset=UTF-8" %>
<%--
* @author Sujatha
* @version 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the Application : discontinue.jsp
* Creation/Modification History :
*
* Sujatha 27-Dec-2001 Created
* Sujatha 20-Jan-2003 Incorporated Struts framework
*
* Overview of Application
* This JSP displays a html form for submitting the shop discontinuance request
* by the shop owner.
*
--%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ page language="java" errorPage="../misc/errorHandler.jsp" %>
<HEAD>
<TITLE><bean:message key="title.discontinueshop"/></TITLE>
<SCRIPT SRC="includes/utils.js">
</SCRIPT>
<SCRIPT>
function submitForm() {
if(trim(document.discontinue.justify.value).length < 1 ) {
alert("<bean:message key="shopdiscontinue.javascript.justificationerror"/>");
document.discontinue.justify.focus();
return;
}
if(document.discontinue.justify.length > 4000 ) {
alert("<bean:message key="shopdiscontinue.javascript.justificationlimiterror"/>");
return;
}
var val= confirm("<bean:message key="shopdiscontinue.javascript.confirmmsg"/>");
if( val ) {
document.discontinue.submit();
}
}
</SCRIPT>
<!-- To prevent caching -->
<%
response.setHeader("Cache-Control","no-cache"); // HTTP 1.1
response.setHeader("Pragma","no-cache"); // HTTP 1.0
response.setDateHeader ("Expires", -1); // Prevents caching at the proxy server
%>
</HEAD>
<BODY>
<jsp:include page="../misc/ownerHeader.jsp" flush="true"></jsp:include>
<FORM name="discontinue" action="authownershopowner.do?command=discontinue" method="post" >
<TABLE width="100%" border="0" cellspacing="0" cellpadding=
"1" bgcolor="white">
<TR>
<TD width="18%" valign="top">
<jsp:include page="leftNavigation.jsp" flush="true"></jsp:include>
</TD>
<TD width="82%" valign="top">
<TABLE width="100%">
<TR>
<TD width="28%" height="33" class="SubHeading">
<bean:message key="subheading.discontinueshop"/></TD>
<TD width="72%" height="33">
<HR>
</TD>
</TR>
<logic:present name="message" scope="request">
<TR>
<TD width="20%" align="center" class="ErrorText" colspan="2">
<%=request.getAttribute("message")%>
</TD>
</TR>
</logic:present>
</TABLE>
<BR>
<TABLE width="100%" border="0" cellspacing="0"
cellpadding="3">
<TR>
<TD width="13%" align="right" class="Prompt">
<bean:message key="prompt.justification"/></TD>
<TD width="87%"><TEXTAREA name="justify" rows="3" align="left"
cols="45"></TEXTAREA></TD>
</TR>
</TABLE>
<BR>
<TABLE width="100%" border="0" cellspacing="0" cellpadding="3" align=center>
<TR>
<TD width="17%"> </TD>
<TD width="10%" align="right"> <A HREF="javascript:submitForm()">
<html:img srcKey="image.discontinue" border="0"/></A> </TD>
<TD width="10%" align="left"> <A HREF="javascript:history.go(-1);">
<html:img srcKey="image.cancel" border="0"/></A> </TD>
<TD width="63%"> </TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</FORM>
<jsp:include page="../misc/commonFooter.jsp" flush="true"></jsp:include>
</BODY>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -