tags:

views:

97

answers:

1

Hi,

I ran into a strange problem with checkbox groups. I am trying to get the values from a group of checkboxes, but I have to hit the submit button twice for it to get the values... I have no idea why. I also use a dropdown box on the same form and I only need to hit the button once to get its value.

my asp code to write it to page

 Dim selectFormValue 
 selectFormValue = Replace(Request.Form("selectTest"), """", "")

 Response.write Request.Form("checkGroup")

here is the html being generated

<form method="post" name="formTest">    
    <select name="selectTest">
      <option value='123"' selected="">Option 1</option>
      <option value='124"' selected="">Option 2</option>
      <option value='125"' selected="">Option 3</option>
   </select>

    <input type="checkbox" name="checkGroup" value="1" CHECKED />
    <input type="checkbox" name="checkGroup" value="2" CHECKED />
    <input type="checkbox" name="checkGroup" value="3" CHECKED />
    <input type="checkbox" name="checkGroup" value="4" CHECKED />       
    <input type="submit" name="submit" value="Update" />
</form>

Thanks!

+1  A: 

One thing i note is, that you don't specify an action in your form.

Filburt
Which just means it would get posted to the same url.
My Other Me
@myotherme - sure, it posts to the same url but since OP states he had to submit twice it might have been worth a shot.
Filburt