How do i pass the value of a dynamically created checkbox to an asp:Button?(c# asp

bigkid

New member
webform)? for (int everyrow = 0; everyrow < countmyrows; everyrow++){
...
itemdiv.InnerHtml ="<input id=\"Checkbox"+everyrow+"\" type=\"checkbox\" />"
}

I want the asp:button to know which checkboxes are checked so that it can delete the corresponding row. I'm trying to do something similar to yahoo mail when deleting messages in the inbox.

I'm currently developing a website and i am in need of your expert advice. Thanks!!
 
Back
Top