I have an ASP.NET webforms site that is used mainly for managing data. One of the tables basically has name/value (string/string) data (no type information, just strings).
I want to make a page that can dynamically load up a table of controls for each record (with a label for the name, and either a TextBoxes for a string/nubmer, or a CheckBoxes for a value that is "true" or "false" - I'll assume it's boolean.)
Are there any built-in controls that can easily do this? If not - if I wanted to just dynamically load Labels and TextBoxes/CheckBoxes into a collection to display, what would be a good Control to use for the collection (e.g. DataGrid, Repeater, etc.)