updateactionmappingform.jsp

来自「Java Pattern Oriented Framework (Jt) 是为了」· JSP 代码 · 共 76 行

JSP
76
字号


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



<html:form action="UpdateActionMapping?jtMsgId=UPDATE" >
  <fieldset>
    <legend> Update Action Mapping</legend>
    <br />
    <label>*Path:</label>
    <html:text property="path" size="50" readonly="true"/>
    <br />
    <br />
    <label>*Type:</label>
    <html:text property="type" size="50"/>
    <br />
    <br />
    <label>Name:</label>
    <html:text property="name" size="50"/>
    <br />
    <br />
    <label>Input:</label>
    <html:text property="input" size="50"/>
    <br />
    <br />
    <label>Scope:</label>
    <html:select property="scope">	
      <html:option value="request">request</html:option>	
      <html:option value="session">session</html:option>
    </html:select>
    <br />
    <br />
    <label>Cancellable:</label>
    <html:select property="cancellable">	
      <html:option value="true">true</html:option>	
      <html:option value="false">false</html:option>
    </html:select>
    <br />
    <br />
    <label>Validate:</label>
    <html:select property="validate">	
      <html:option value="true">true</html:option>	
      <html:option value="false">false</html:option>
    </html:select>
    <br />
    <br />
    <label>Parameter:</label>
    <html:text property="parameter" size="50"/>
    <br />
    <br />
    <label>Forward (success):</label>
    <html:text property="forwardSuccess" size="50"/>
    <br />
    <br />
    <label>Forward (failure):</label>
    <html:text property="forwardFailure" size="50"/>
    <br />
    <br />
    <label>Forward (cancel):</label>
    <html:text property="forwardCancel" size="50"/>
    <br />
    <br />
    <hr />
    <html:submit />
    <html:cancel />
  </fieldset>
</html:form>





⌨️ 快捷键说明

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