in reply to HTML Form retaining values
hmmmm - so what you're saying is that when you first run the script that displays the form, the display shows:
and after you run the script, the display shows:<input type='checkbox' name='CheckBox' value=''>
?????? ..... if that's the case, then you have something going on that you're not sharing with us, me thinks.<input type='checkbox' name='CheckBox' value='ON'>
And FWIW, when I work with dynamic form stuff (and more specifically, checkboxes), I'm looking to create displays that end up using "checked" to control the display .... after all, my understanding is that it's the "checked" aspect that controls wheather the submission "sends" the value to the script - like:
<input type='checkbox' name='CheckBox' value='ON' checked>
|
|---|