Dear friends,
I have a template column that shows images according to database value:
when exporting to excel, I want some text to be exported instead of image itself. For example I need "COLD" text in that column instead of image or image link itself.
how can I achieve this ?
thanks....
I have a template column that shows images according to database value:
<ItemTemplate> <asp:Image runat="server" AlternateText="" ImageUrl="Images/ColdChain.png" Width="20px" Height="20px" Visible='<%# iif ( SomeFunction(Eval("ColdChain")) ="", "false" , "true") %>' /></ItemTemplate>when exporting to excel, I want some text to be exported instead of image itself. For example I need "COLD" text in that column instead of image or image link itself.
how can I achieve this ?
thanks....