我看到一个这样的表单:
 <html:form action="/login.do" focus="userName" >
<table>
  <tr>
<td>姓名:</td>
<td><html:text property="userName" size="16" maxlength="16"/></td>
  </tr>
  <tr>
<td>年龄:</td>
<td><html:password property="password" size="16" maxlength="16"/></td>
  </tr>
  <tr>
    <td></td>
        <td>
          <html:submit property="submit" value="提交"/>
          <html:reset property="reset" value="重置"/>
        </td>
  </tr>
</table>    
    </html:form>可是我在DreamWeav中生成的表单前面没有  HTML这样的字样啊,这是用什么工具做出来的。。