Reputation: 1412
I have a datacolumn with an extended property that I want to show in a datagrid. In code I can reference it this way:
bool show = bool.parse(myDataTable.Columns["Price"].ExtendedProperties["Visible"].ToString());
In my repeater, I have this
<ItemTemplate>
$<%#Eval("Price") %>
</ItemTemplate>
What can I put inside an eval statement to show the 'Visible' extended property?
Upvotes: 2
Views: 370