April 29, 2003 at 8:19 am
Can anyone tell me how can I show the description field of some column in an asp or asp.net page?
Thank you
April 29, 2003 at 8:36 am
Can you please elaborate as to what is <description field of column> means ?
Thanks
April 29, 2003 at 8:39 am
When you create a table, and write down the columns of it, you can also write the "description" of each column. For example, if you have a column called "price", the description of it could be "Price of the shoes"
April 29, 2003 at 9:01 am
Use fn_listextendedproperty to return extended property values of database objects.
SELECT *
FROM ::fn_listextendedproperty (NULL, 'user', 'dbo', 'table', 'yourtablename', 'column', 'yourcolumnname')
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply