populate html table using jstl
how can i use jstl to populate html table????
this is my code but i am getting errors
Code:
<td ><c:out value="${database.id)" /> <input type="text" name="id" size="1" value ="${database.id}"></td>
error is:
org.apache.jasper.JasperException: /databaseContent.jsp(40,5) "${database.id)" contains invalid expression(s): javax.el.ELException: Error Parsing: ${database.id)
I am trying to populate a cell as well as create a text area with the same data so that user can edit it.