这是模板页面
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
  <head>
    <html:base />
    
    <title>templete</title>
<LINK href="img/css.css" type=text/css rel=stylesheet>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
  </head>
  
  <body>
    <div align="center">
<table border="0" width="750" cellspacing="0" cellpadding="0" id="table1" height="234">
<tr>
<td height="36"><tiles:insert attribute="header"/></td>
</tr>
<tr>
<td>
<table border="0" width="100%" cellspacing="0" cellpadding="0" id="table2" height="100%">
<tr>
<td width="120"><tiles:insert attribute="menue"/></td>
<td><tiles:insert attribute="content"/></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="33"><tiles:insert attribute="footer"/></td>

</tr>
</table>
</div>
</body>
</html:html>
这是内容页面
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<table border="0" cellspacing="1" cellpadding="0" width="743"
bgcolor="#009ACE">
<tr bgcolor="#FFFFFF">
<td class="tablerow" height="22" width="721" bgcolor="#C0EFFE"
colspan="2">
<p align="left">
返回首页&gt;&gt;&nbsp; 新增联系人
</td>
</tr> <tr bgcolor="#FFFFFF" height="30">
<td colspan="2" height="30" width="731" bgcolor="#9CCFFF">
修改资料- 必填的项目:
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="235" class="tablerow" height="25">
姓名
</td>
<td class="tablerow" height="25" width="486">
<html:text property="name"/><font color="#FF0000">***不能含有非法字符</font>
</td>
</tr>
</table>
所有的tld文件都导入进去了,如果把]<html:text property="name"/>换成<input type="text">就没问题了,快快帮忙呀这是什么问题?