I have a list of checkboxes that are dynamically created, there could be anywhere from 0 to 1000+ of them.
<asp:CheckBox id="check" runat="server" />
Also, I have a submit type button
<asp:Button runat="server" Text="Edit" ID="btnEdit" PostBackUrl="~/GroupStatus
Change.asp
x"/>
Each of the checkboxes are given a name like "checkbox1", "checkbox2".. etc as they are added.
Now my question is, when I click on my button, how can I determine which checkboxes are checked once I get to the GroupStatusChange.aspx page? Is there some sort of post or get function that I can use?
Thanks
Start Free Trial