There must be a difference between a standard input field and a textbox field.
I would like to use a textbox field and save the value in a hidden field for paging. This works in a default input field but not a textbox field.
here is my code
[code=html]
String inputBox = request.getPara meter("inputBox ");
if (inputBox == null) {
inputBox = "";
}
<textarea style="width:20 0px; height:50px;" id="inputBox" name="inputBox" value=<%=inputB ox %>></textarea>
<input type="hidden" name="inputBox" value="<%= request.getPara meter("inputBox ") %>">
[/code]
I would like to use a textbox field and save the value in a hidden field for paging. This works in a default input field but not a textbox field.
here is my code
[code=html]
String inputBox = request.getPara meter("inputBox ");
if (inputBox == null) {
inputBox = "";
}
<textarea style="width:20 0px; height:50px;" id="inputBox" name="inputBox" value=<%=inputB ox %>></textarea>
<input type="hidden" name="inputBox" value="<%= request.getPara meter("inputBox ") %>">
[/code]
Comment