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

📄 welcomestruts.jsp

📁 SOA
💻 JSP
字号:
<%@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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -