I am trying to parse the html side of an aspx page from the C# code behind.
Essentially I have a with multiple checkboxes that are named as such:
qlcbXX with XX being an id of an item pulled from a database.
What i would like to do is
a) parse linkSelections for all the checkbox inputs
b) determine if they are checked
c) if checked add to a list called keepList else add to list called removeList
Any ideas?
Thanks
-Seth