1. problem with JSP checkbox stackoverflow.comPossible Duplicate:I would like to raise a question about JSP checkbox I want to loop the subscription ... | ||
2. Checking Status of a Checkbox coderanch.comif you expect to see "true" or "false" printed out, then shouldn't you be outputting blnCheckBoxNameChecked ? If you expect the checkbox itself to return a value, then you need to supply one in its value attribute As it stands now, a checked checkbox will return an empty string, and an unchecked one will return null, which when ... | ||
3. Check Box with Jsp:How-To coderanch.comI have check boxes whose values r coming from database. I wanna check which of them are checked on another page. How ?i m attaching my code. It gives only one cheked value.... ---------------------------------- <% while (rs.next()){ %> "> | <%=rs.getString("pub_name")%> | |
4. Problem on detecting the checkboxes coderanch.com | ||
5. getParameter on checkbox returning null even though it's checked! coderanch.comI did search for help in other threads like this one: http://www.coderanch.com/t/279386/JSP/java/Checking-Status-Checkbox However, my problem cannot be resolved by that information. My JSP has a form, and when it's submitted, some JSP code at the top of the page handles it with this: if(request.getMethod().equalsIgnoreCase("POST")) { etc, etc. Most of the form fields are being extracted on the back end in a ... | ||
6. How do I maintain the state of checkboxes across page? coderanch.comhi, thanks for the reply. But.. how can I go about doing this? I'm really really lost. I know how to use session to store information to pass to other pages, but I can't seem to do the same for this. Basically, I have 2 files to handle. One file (displayPages.jsp) does the displaying and paging of all the data. Each ... | ||
7. Check Box coderanch.com | ||
8. jsp - checkbox information retieval problem coderanch.comhey i need some help! I have a jsp which has a list of checkboxes to select from. I want to know how i can display the selected checkboxes using another jsp. Please illustrate if u can = My jsp is given below! |