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

📄 myprofile.jsp

📁 Oracle的J2EE Sample
💻 JSP
字号:
<?xml version = "1.0" encoding = "UTF-8" standalone="yes" ?>
<%--
 * @author  Elangovan
 * @version 1.0
 *
 * Development Environment       : Oracle9i JDeveloper
 * 
 * Name of the File              : MyProfile.jsp
 *
 * Creation/Modification History :
 *
 *    Elangovan     26-Apr-2002      Created
 *
 * Overview of Application       :
 *
 *  This page displays the form to change password. 
 *
--%>

<!DOCTYPE SimpleResult PUBLIC "-//ORACLE//DTD SimpleResult 1.1//EN" "http://xmlns.oracle.com/ias/dtds/SimpleResult_1_1_0.dtd">

<%@ page contentType="text/vnd.oracle.mobilexml; charset=UTF-8" %>
<%@ page language="java" %>
<%@ page session="true" %>

<SimpleResult>

  <SimpleContainer>

    <jsp:include page="ShowError.jsp" flush="true" />  
    
    <SimpleText>     
      <SimpleTextItem>Change Password</SimpleTextItem>
    </SimpleText>  

      <SimpleForm name="CHANGEPWD" method="POST" target="controllerservlet">
          
          <SimpleFormItem type="password" name="OLDPASSWORD" maxlength="30" mandatory="yes" >Old Password</SimpleFormItem>
          <SimpleFormItem type="password" name="NEWPASSWORD" maxlength="30" mandatory="yes" >New Password</SimpleFormItem>
          <SimpleFormItem type="password" name="NEWPASSWORD1" maxlength="30" mandatory="yes" >Confirm Password</SimpleFormItem>
          <SimpleFormItem type="text" displaymode="hidden" name="EVENTNAME" value="MOBILE-CHANGEPASSWORD"></SimpleFormItem>
          <SimpleFormItem type="text" displaymode="hidden" name="CALLOUT_EVENT" value="MOBILE-PROFILE"></SimpleFormItem>
          
      </SimpleForm> 
          
  </SimpleContainer> 
    
</SimpleResult>  

⌨️ 快捷键说明

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