I have this line of the grid that takes the description of a message, however it is very large and sometimes it breaks the layout of the grid, I would like to know if it is possible to shorten the message and / or camouflage the message in a link. p>
That is, take the message and replace it with a Visulize
Follow the code below:
<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>