Here's what I'm trying to do:
I have a gridview that, because of screen space issues, truncates text in one of the templatefields (label control).
What I'm trying to do is, export that gridview to an excel file, but I'd like that field not to be truncated when exporting.
Is there a way to do this? Basically I'm trying to remove the function call programmatically.
This is the code of the TemplateField:
<asp:TemplateField Header-Text="Notes">
<ItemTemplate>
<asp:Label id="lblNotes" runat="server" Text='<# TruncateText(Eval("Notes"),60) %>'></asp:label>
</ItemTemplate>
</asp:TemplateField>
