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

📄 notifypassword.jsp

📁 噶额外噶外骨骼感广泛高热感 就 啊啊
💻 JSP
字号:
<%@ page contentType="text/html; charset=UTF-8" %>
<%--
 * @author  Sujatha
 * @version 1.0
 *
 * Development Environment        :  Oracle9i JDeveloper
 * Name of the Application        :  notifyPassword.jsp
 * Creation/Modification History  :
 *
 *     Neelesh        27-Dec-2001      Created
 *     Sujatha        07-Jan-2003      Incorporated Struts framework
 *
 * Overview of Application  
 *     This JSP displays a form where the users enter the user name and the 
 *     password will be sent to the email id specified in the profile for that
 *     user name
 *
--%>

<%@ 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" %>
<HEAD>
<TITLE><bean:message key="title.passwordnotification"/></TITLE>
<!-- 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
%>
<SCRIPT SRC="includes/utils.js"></SCRIPT>
<SCRIPT>
    
function submitForm() {
  var frm = document.Password;
  
  // Check if all the required fields have been entered by the user before
  // submitting the form
  if( trim(frm.userName.value).length < 1 ) {
    alert("<bean:message key='login.javascript.usernameerror'/>");
    frm.userName.focus();
    return ;
  }

  frm.submit();
}
</SCRIPT>
</HEAD>

<jsp:include page="userHeader.jsp" flush="true"></jsp:include>
<FORM NAME="Password" ACTION="notifypassword.do?command=notifyPassword" METHOD=POST>
 <TABLE width="100%" border="0" cellspacing="0" cellpadding="5" > 
 <TR>
            <TD width="20%" class="SubHeading"><bean:message key="subheading.passwordnotification"/></TD>
            <TD width="80%"> 
              <HR>
            </TD>
      </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>
    
    <TR> 
      <TD align="center" class="BlueText" colspan="2"><bean:message key="message.passwordnotification"/></TD>
    </TR>
    <TR> 
      <TD colspan="2"> 
        <CENTER>
          <TABLE width="100%" border="0" cellspacing="0"
            cellpadding="5" >
            <TR> 
              <TD align="right" width="50%" class="Prompt"><br>
                <bean:message key="prompt.userName"/></TD>
              <TD align="left" width="50%">&nbsp; <br>
                <INPUT type="text"
                name="userName" size=25 maxlength=20>
              </TD>
            </TR>
          </TABLE>
          <BR>
         <TABLE width="50%" border="0" cellspacing="0" cellpadding="3" align=center>
          <TR> 
            <TD width="30%">&nbsp;</TD>
            <TD width="10%" align="right"> <A HREF="javascript:submitForm()">
              <html:img srcKey="image.submit" 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>
        </CENTER>
      </TD>
    </TR>
  </TABLE>
  <BR>
</FORM>
<jsp:include page="commonFooter.jsp" flush="true"></jsp:include>
</BODY>
</html:html>

⌨️ 快捷键说明

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