异常大全
10月12日Cannot retrieve definition for form bean null on action
今天特别郁闷!!
原来是这样的错误。
Struts error:
jsp页面中的form可以不为其写formbean或者动态form(后台用request.getParameter()即可读取),但是如果使用了html:form的标签,就一定要为其写formbean或者动态formbean了。如下:
<html:form action="test_All_Info.do">
<td>
<input type="submit" value="查看所以信息"/>
</td>
</html:form>
====================================================================>
<form action="test_All_Info.do">
<td>
<input type="submit" value="查看所以信息"/>
</td>
</form>
页:
[1]