The text area value I am trying to submit is around 400 chars and the value the servlet gets is null. When I limit this down to less that 75 chars the servlet will get the proper value. Has anyone seen this happen before?
JSP
<form action="/admin/homepageupdates">
<div class="body">
<textarea name="txtcontent" rows="7" cols="105"><%=hp.getBodyText()%></textarea>
</div>
<input type="submit" name="submit" id="submit" value="Update" />
</form>
Servlet
String textbody = (String)request.getParameter("txtcontent");