File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes EJB and other Java EE Technologies and the fly likes Error using struts (form-bean) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "Error using struts (form-bean)" Watch "Error using struts (form-bean)" New topic
Author

Error using struts (form-bean)

Rebecca Abraham
Ranch Hand

Joined: Feb 20, 2003
Posts: 37
Hi,

I am trying to display the data from my form-bean in a jsp file called taskMaintenance.jsp using the following code:

<td>
<html:textarea property="tskDtlDescription" cols="50" rows="3" value="<bean:write name="taskList" property="tskDtlDescription"/>">
</html:textarea>
</td>

But, I am getting the following error:

org.apache.jasper.JasperException: /pages/user/taskMaintenance.jsp(101,105) equal symbol expected
org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:83)
org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:402)
org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:126)
.......


Could someone please help?

Thanks.

Rebecca
aitor alzola
Greenhorn

Joined: Sep 07, 2004
Posts: 14
try something like this :
<html:textarea cols="50" rows="3" name="taskList" property="tskDtlDescription"/>
I think it�ll work. Good luck!!
Rebecca Abraham
Ranch Hand

Joined: Feb 20, 2003
Posts: 37
Thanks a lot! It worked.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Error using struts (form-bean)
 
Similar Threads
validation of indexed properties
blank page returned from validate
uploading multi images by using file upload...
Struts making me nuts :)
Adding Dynamic Rows to Table using addrow button