Blank spaces in text area..
Hi..
In my jsp application i am getting one field of database table into a text area.
This is used while updating the table. The coding for text area is like this
<textarea name="persons" cols="60" rows="2" wrap="VIRTUAL" id="persons">
<%if(upd.getPersons()!=null){%><%=upd.getPersons()%><%}%>
</textarea>
Where upd.getPersons() retrieve a field from database.
My problem is when i make updations again and again some blank spaces are created each time in the text area... So after some updations are made the blank spaces grow as if it exceeds the field length in DB table.
Please help me out.
Thanks in advance

