prompt user
i have a jsp page with some check boxes and one "update" button.......... i want to post the data in to another jsp page along with the input from a user prompt........
how can i do it.........
please help.......
i have a jsp page with some check boxes and one "update" button.......... i want to post the data in to another jsp page along with the input from a user prompt........
how can i do it.........
please help.......
> i have a jsp page with some check boxes and one
> "update" button.......... i want to post the data in
> to another jsp page along with the input from a user
> prompt........
>
> how can i do it.........
>
> please help.......
hi!
if you want to determine which checkboxes were ticked by the user, you have to do some javascript code before posting it.
javascript code...
document.formname.checkboxname.checked will return either true or false
hope this helps!