在写jsp是用到textarea标签,怎么写才能让输入框里面输入的内容在提交后放到数据库表中对应的字段呢。我这段jsp是这样写的
<tr><td>工作内容:</td>
  <td><textarea rows="10" cols="60" name="dailyReportForm" > </textarea></td>
  </tr>
我现在要把输入的工作内容放到数据库表的reportContent字段下,jsp里面应该怎么写