propertiesform.jsp

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

JSP
38
字号


<%@ 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" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ page import = "Jt.wizard.*" %>
<%@ page import="Jt.*" %>



<c:if test="${jtReply != null}">
  <c:set var="propertiesForm" value="${jtReply}" scope="request" />   
</c:if>

<html:form action="/UpdateWizardConfig?jtMsgId=JtUPDATE">
  <fieldset>
    <legend>Properties</legend>
    <br />
    <label> Working Directory:</label>
    <html:text property="workingDirectory" size ="50"  readonly="true" />
    <br />
    <br />
    <label>*Configuration File:</label>
    <html:text property="configFile" size ="50"/>
    <br />
    <br />
    <label>*Application:</label>
    <html:text property="appName" size ="50"/>
    <br />
    <br />
    <hr />
    <html:submit value="Save" />
    <html:cancel />
  </fieldset>
</html:form>

⌨️ 快捷键说明

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