I have a gridview with this field:
<asp:TemplateField HeaderText="Title">
<ItemTemplate>
<asp:Literal ID="lblTitle" runat="server" Text='<%# Eval("Title") %>' />
</ItemTemplate>
</asp:TemplateField>
If the title is too long it completely breaks the gridview. How can I:
- Make the width of this column fixed.
- If the content is too long, break it into multi lines.