This is my code:
<asp:TemplateField HeaderText="Comments" HeaderStyle-Width="60%">
<ItemTemplate>
<%# Eval("Comments").ToString().Replace(Environment.NewLine, "<br/>")%>
</ItemTemplate>
This is not adding a line break due to which the grid is getting stretched. Please provide a solution.