|
Does anyone see any reason why I cannot get the value back into my textarea on my jsp page with this code? sadInfo is a javabean and I use the same logic in other parts of the page and they work fine, the only difference is that I use input type = text. Is it different with textarea for some reason?
<td align="center"> <textarea name="cntlDef" rows="6" cols="80" value="<%out.print(sadInfo.getCntlDef());%>" > </textarea></td>
Thanks! |