gform.jsp
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
  2. <html:html>
  3. <head>
  4. <title>访客留言板</title>
  5. </head>
  6. <body BGCOLOR="#FFFFFF" TEXT="#000000">
  7.   <div align="center">
  8. <p><html:img page="/gbook.gif" width="374" height="83"/><br>
  9. </p>
  10.   </div>
  11.  <html:form action="/msgbook">
  12.   <div align="center">
  13.     <table BORDER="0" width="493">
  14.       <tr> 
  15.         <td><html:img page="/buttom_b.gif" width="16" height="16"/>您的姓名:</td>
  16.         <td COLSPAN="2"> 
  17.           <html:text property="name" />
  18.           <font color="#FF0033">&lt;必填&gt;</font> </td>
  19.       </tr>
  20.       <tr> 
  21.         <td ><html:img page="/buttom_b.gif" width="16" height="16"/>您的性别:</td>
  22.         <td> 
  23.           <html:radio property="sex" value="m"/>
  24.           男</td>
  25.         <td width="160"> 
  26.           <html:radio property="sex" value="f"/>
  27.           女</td>
  28.       </tr>
  29.       <tr> 
  30.         <td><html:img page="/buttom_b.gif" width="16" height="16"/>电子邮件:</td>
  31.         <td COLSPAN="2"> 
  32.           <html:text property="email" />
  33.           <font color="#FF0033">&lt;必填&gt;</font> </td>
  34.       </tr>
  35.       <tr> 
  36.         <td><html:img page="/buttom_b.gif" width="16" height="16"/>留言主题:<font color="#FF0033">&lt;必填&gt;</font></td>
  37.         <td COLSPAN="2">
  38.           <html:text property="title" />
  39.         </td>
  40.       </tr>
  41.       <tr> 
  42.         <td COLSPAN="3">
  43. <html:img page="/buttom_b.gif" height="16" />留言内容:</td>
  44.       </tr>
  45.       <tr> 
  46.         <td COLSPAN="3"> 
  47.           <html:textarea property="content"  rows="8" cols="50"/>
  48.         </td>
  49.       </tr>
  50.       <tr align="center"> 
  51.         <td colspan="3"> 
  52.           <html:submit value="确定送出"/>&nbsp;&nbsp;&nbsp;
  53.           <html:reset value="擦掉重写"/>
  54.         </td>
  55.       </tr>
  56.     </table>
  57.   </div>
  58. </html:form>
  59. <p>&nbsp;</p>
  60. </body>
  61. </html:html>