0
I have this grid line that takes the description of a message, but it is very large sometimes and is breaking the grid layout, I wonder if it is possible to shorten the message and/ or camouflage the message in link.
That is to take the message and replace with a Visualise
Follows code:
<asp:TemplateField HeaderText="ÚLTIMA MENSAGEM">
<ItemStyle HorizontalAlign="Center" />
<ItemTemplate>
<a href="cicloObjetivo.aspx?Cod=<%# Eval("OcIDescr")%>" style="color: #0000FF;">
<%# Eval("OcIDescr").ToString()%>'</a>
</ItemTemplate>
</asp:TemplateField>
inside Itemstyle, adds the size you want in the column:
<ItemStyle HorizontalAlign="Center" Width="50px" />
– Rovann Linhalis