welcomestruts.jsp

来自「SOA」· JSP 代码 · 共 38 行

JSP
38
字号
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>

<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>

<html:html locale="true">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title><bean:message key="welcome.title"/></title>
        <html:base/>
    </head>
    <body style="background-color: white">
        
        <logic:notPresent name="org.apache.struts.action.MESSAGE" scope="application">
            <div  style="color: red">
                ERROR:  Application resources not loaded -- check servlet container
                logs for error messages.
            </div>
        </logic:notPresent>
        
        <h3 onmouseover="请输入必要的处理信息"><bean:message key="welcome.heading"/></h3>
        <p><bean:message key="welcome.message"/></p>
        <form name="Sun Microbank" action="Customeroperate.jsp" method="get">
          <P>
            AccountNum: <input type="text" name="accountNum" value="0" />
            AccountPwd:<input type="password" name="accountPassword" value="0" />
          </P>
          <P>
            OperateAmount<input type="text" name="operateAmount" value="0" />
            OperateType<input type="text" name="OperateType" value="Null" />
        </P><input type="submit" value="Submit" name="Submit" />
        <input type="reset" value="Cancel" name="Cancel" />
        </form>
            </body>
</html:html>

⌨️ 快捷键说明

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