Using SQL Server, have a name value pair table. Each row is basically userid, contentid, sectionid, parameter, value. So there is data I want to display in a table such as user information. Each bit of information is in it's own row, sow how do I get it into a DataSet for use in a Repeater? Can I somehow merge the rows into one? So I can get multiple parameter/value pairs on one row?
so like...
two rows for user 32:
(param / value)
fname / Bob
lname / Smith
displayed on one row in a repeater like this:
Bob Smith
Any ideas? Oh yeah and the reason it is in the name/value pair format is to adhere to a required standard.