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

📄 postmessage.jsp

📁 基于j2ee的电子留言系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" language="java" errorPage="exception.jsp"%>
<%@include file="taglibs.jsp"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>发布新留言</title>
<link href="img/css.css" rel="stylesheet" type="text/css">
</head>

<body>
<div align="center">
<div class="dojoDialog" style="width:300px;">
<logic:messagesPresent>
   <bean:message key="errors.header"/>
   <ul>
   <html:messages id="error">
      <li><bean:write name="error"/></li>
   </html:messages>
   </ul><hr />
</logic:messagesPresent>
  <table>
    <caption>
      发布新留言
    </caption>
	<html:form action="/processPostMessage" onsubmit="return validatePostMessageForm(this);">
    <tr>
      <td>标题:</td>
      <td><html:text property="title" size="30"/></td>
    </tr>
    <tr>
      <td>内容:</td>
      <td><html:textarea property="content" cols="50" rows="8"></html:textarea></td>
    </tr>
    <tr>
      <td colspan="2" align="center">
		<input name="submit" type="submit" value="发布"/>
        <input name="reset" type="reset" value="重设"/>
      </td>
    </tr>
	</html:form>
<html:javascript formName="postMessageForm"/>
  </table>
</div>
</div>
 <%@include file="copyright.jsp"%>
</body>
</html>

⌨️ 快捷键说明

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