⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shopdetails.jsp

📁 噶额外噶外骨骼感广泛高热感 就 啊啊
💻 JSP
字号:
<%@ page contentType="text/html; charset=UTF-8" %>
<%--
 * @author  Sujatha
 * @version 1.0
 *
 * Development Environment        :  Oracle9i JDeveloper
 * Name of the Application        :  shopDetails.jsp
 * Creation/Modification History  :
 *
 *     Sujatha        27-Dec-2001      Created
 *     Sujatha        20-Jan-2003      Incorporated Struts framework
 *
 * Overview of Application  
 *  This JSP provides UI for editing shop details
 *
--%>
<%@ 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 import="oracle.otnsamples.vsm.services.data.Shop"%>
<%@ page import="oracle.otnsamples.util.Utilities"%>
<%@ page language="java" errorPage="../misc/errorHandler.jsp" %>
<html>
<HEAD>
<TITLE><bean:message key="title.shopdetails"/></TITLE>
<SCRIPT SRC="includes/utils.js">
</SCRIPT>
  <SCRIPT>  
  function submitForm() { 

  var frm = document.forms[1];
  // Check if all the required fields have been entered( with proper values ) before
  // submitting the form
  
  if( trim(frm.shopName.value) == "" ) {
	  alert("<bean:message key="shopinfo.javascript.shopnameerror"/>");
	  frm.shopName.focus();
	  return ;
	} 

  if( trim(frm.description.value) == "" ) {
	  alert("<bean:message key="shopinfo.javascript.shopdescerror"/>");
	  frm.description.focus();
	  return ;
	} 
  
  if( frm.description.value.length > 4000 ) {
	  alert("<bean:message key="shopinfo.javascript.shopdesclimiterror"/>");
	  frm.description.focus();
	  return ;
  } 
  frm.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>

<jsp:include page="../misc/ownerHeader.jsp" flush="true"></jsp:include>
 <%
  // Get shop details and category name of the shop
   Shop    shop     = (Shop)request.getAttribute("shop");
   String  catName  = (String)request.getAttribute("category");
 %>
      <TABLE width="100%" border="0" cellspacing="0" cellpadding=
      "1" bgcolor="white">
        <TR>
          <TD width="20%" valign="top">
          <jsp:include page="leftNavigation.jsp" flush="true"></jsp:include> 
          </TD>
          <TD width="66%" valign="top">
            <TABLE width="100%">
              <TR>
                <TD width="26%" height="33" class="SubHeading">
                <bean:message key="subheading.shopdetails"/></TD>

                <TD width="76%" height="33">
                  <HR>
                </TD>
              </TR>
  <logic:present name="message" scope="request">
       <TR> 
         <TD width="20%" align="center" class="ErrorText" colspan="2">
            <img src="images/warning.gif">&nbsp;<%=request.getAttribute("message")%>
         </TD>
       </TR>
</logic:present>                
            </TABLE>
            <BR>

<html:form action="authownershopowner.do?command=editShopDetails">
        <TABLE width="100%" border="0" cellspacing="0" cellpadding="3">
              <TR>
                <TD width="27%" class="Prompt" align="right"><bean:message key="prompt.shopName"/></TD>

                <TD width="73%"><html:text property="shopName" value="<%=shop.getShopDetail(0).getShopName()%>" size="46" maxlength="20"/></TD>
              </TR>

          <TR> 
            <TD width="17%" class="Prompt" align="right"> <bean:message key="prompt.shopDescription"/></TD>
            <TD width="29%">
              <html:textarea property="description" value="<%=shop.getShopDetail(0).getDescription()%>" rows="5" cols="35"/> 
            </TD>
          </TR>

              <TR>
                <TD width="27%" height="22" class="Prompt" align=
                "right"><bean:message key="prompt.category"/></TD>

                <TD width="73%" class="BlueText"><%=catName%></TD>

              </TR>

              <TR>
                <TD width="10%" class="Prompt" align="right">
                Registration Date</TD>

                <TD width="39%" class="BlueText">
                <%= Utilities.format(shop.getRegDate())%>
                </TD>
              </TR>


              <TR>
                <TD>
                </TD>
              </TR>

              <TR>
                <TD width="27%" align="right"><BR>
                </TD>

                <TD width="27%"><BR>
         <TABLE width="50%" border="0" cellspacing="0" cellpadding="3">
          <TR> 
            <TD width="30%">&nbsp;</TD>
            <TD width="10%" align="right"> <A HREF="javascript:submitForm()">
              <html:img srcKey="image.update" border="0"/></A> </TD>
            <TD width="10%" align="center">
              <A HREF="javascript:document.forms[1].reset();">
                <html:img srcKey="image.reset" 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="29%">&nbsp;</TD>
          </TR>
        </TABLE>
                </TD>
              </TR>
            </TABLE>

          </TD>
        </TR>
      </TABLE>
</html:form>
<jsp:include page="../misc/commonFooter.jsp" flush="true"></jsp:include>
</BODY>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -