Forum Moderators: open
Here's sample code that would display the 'company name' contained in a table:
<td><%# DataBinder.Eval(Container.DataItem, "CompanyName") %></td>
My question is: how could you limit the number of characters displayed?
The reason for the question is the table field I'm using can be extremely lengthy in charaters and it doesn't make sense to display them all on a rendered page.
thx.