如何使用struts应用程序在textarea中显示数据

时间:2010-02-09 05:49:38

标签: struts

如何使用struts应用程序在

这是我的代码:

<html:textarea property="comments" </html:textarea>
<bean:write name="FormBean" property="comments"/>

其中FormBean是我的beanclass而comment是beanclass中的属性。

但是我无法理解它。

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

如果您使用Struts操作表单并且html:textarea标记内包含html:form标记(此标记仅在嵌套在表单标记正文中时有效),则只需以下代码:

<html:textarea property="comments" />

不知道您要对bean:write做什么,但如果您想在html:textarea内显示,我不确定您可以。 property标记必须使用html:textarea属性,并将其用作内容。