I have a submit button, created from - basically when this is clicked I want a groupbox to appear below where the submit button is....any suggestions?
I've tried to get the request given of from this click however it doesn't help me. I thought the logic would be similar to this:
<form>
<input type="checkbox" name="group" value="Yes" />Yes
<input type="checkbox" name="group" value="No" /> No
<input type="submit" value="submit" />
</form>
<%
String[] select = request.getParameterValues("group");
/* Add code creation here */
%>
Any suggestions or examples you can think of?
Thanks greatly, U.