D
DFDavis
I know this probably isn't the best way to code this but I have to take
in a group of members for a company, generate a web page with their
names, what measures they meet and then place a check box for a
reminder by the measures. I have created the check boxes by adding the
html tag:
sb.Append("<input type = checkbox id=\"memberid+ "_" + rule_num\" runat
= server /> ");
(This is added to a label on the page so that it can be updated when
the page loads)
If I add a button to the page, that submits information if they did
select any reminders, how would I find out which checkboxes have been
checked? If I can find the names somehow it would make it easy to
parse out, but I have no idea how to do this. Any help would be
appreciated.
in a group of members for a company, generate a web page with their
names, what measures they meet and then place a check box for a
reminder by the measures. I have created the check boxes by adding the
html tag:
sb.Append("<input type = checkbox id=\"memberid+ "_" + rule_num\" runat
= server /> ");
(This is added to a label on the page so that it can be updated when
the page loads)
If I add a button to the page, that submits information if they did
select any reminders, how would I find out which checkboxes have been
checked? If I can find the names somehow it would make it easy to
parse out, but I have no idea how to do this. Any help would be
appreciated.