This is a continuation from this:
Is there an easy way to check multiple columns to see if the value is null?
Now that I’ve got my single product, it’s far too wide to display on my webform with a gridview. What do you guys recommend that I use? I thought about outputting it as a table with two columns: the first will state what the data represents and the second column will have the actual data. Is this a bad idea? If not, I’m not really sure how I would do this anyway.
You’ll typically want to display only a few columns that describe the product (ID, Description, etc) in a GridView. One of the columns can contain a link to a details page that will display everything else.
I’m not sure that its an official pattern, but this idea is often called Master/Detail.