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

📄 booknewsform.jsp

📁 beginJsp2.0外文书籍源代码
💻 JSP
字号:
<%@page contentType="text/html"%><%@taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%><%@taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt_rt"%><%@taglib prefix="html" uri="http://jakarta.apache.org/struts/tags-html-1.0"%><%@taglib prefix="bean" uri="http://jakarta.apache.org/struts/tags-bean-1.0"%><html:form action="/book/news/aud" onsubmit="return validateBookNewsForm(this)">  <table>    <tr>      <td colspan="2"><html:errors/></td>    </tr>    <tr>      <td width="20%"><bean:message key="booknews.title.label"/></td>      <td><html:text property="title" maxlength="255" size="40"/></td>    </tr>    <tr>      <td valign="top"><bean:message key="booknews.body.label"/></td>      <td><html:textarea property="body" cols="31" rows="10"/></td>    </tr>    <tr>      <td><bean:message key="booknews.user.label"/></td>      <td>${bookNewsForm.user}</td>    </tr>    <tr>      <td><bean:message key="booknews.published.label"/></td>      <td><fmt:formatDate value="${bookNewsForm.published}" type="both"/></td>    </tr>    <tr>      <td></td>      <td align="right">        <c:choose>          <c:when test="${param.mode=='add'}">            <html:submit property="action">              <bean:message key="booknews.add.button.label"/>            </html:submit>          </c:when>          <c:otherwise>            <html:submit property="action">              <bean:message key="booknews.update.button.label"/>            </html:submit>            <html:submit property="action" onclick="bCancel=true;">              <bean:message key="booknews.delete.button.label"/>            </html:submit>          </c:otherwise>        </c:choose>        <html:cancel onclick="bCancel=true;">          <bean:message key="booknews.cancel.button.label"/>        </html:cancel>      </td>    </tr>  </table>  <input type="hidden" name="mode" value="${param.mode}">  <html:javascript formName="bookNewsForm"/></html:form>

⌨️ 快捷键说明

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