I think you need to go with a data model like --
Product Table
- ProductId (PK)
- ProductName
- Details
Property Table
- PropertyId (PK)
- ProductId (FK)
- ParentPropertyId (FK - Self referenced to categorize properties)
- PropertyName
- PropertyValue
- PropertyValueTypeId
Property Value Lookup Table
- PropertyValueLookupId (PK)
- PropertyId (FK)
- LookupValue
And then have a dynamic view based on this. You could use the PropertyValueTypeId coloumn to identify the type, using a convention, like (0- string, 1-integer, 2-float, 3-image etc) - But ultimately you can store everything untyped only. You could also use this column to select the control template to render the corresponding property to the user.
You can use the Value lookup table to keep lookups for a specific property (so that user can choose it from a list)
