Hi all,<BR><BR>Does anyone know how to edit lengthy text in a datagrid? When I add the TextMode="Multiline" attribute to the TextBox control it does not display the data in the control. If I take the attribute away, it does.<BR><BR><asp:TemplateColumn HeaderText="Category Description"><BR> <ItemTemplate><BR> <asp:Label id="CategoryDesc" Text='<%#Container.DataItem("CategoryDesc")%>' runat="server"/><BR> </ItemTemplate><BR> <EditItemTemplate><BR> <asp:TextBox id="CategoryDesc" TextMode="Multiline" Rows="12" Cols="50" Value=http://aspmessageboard.com/archive/index.php/'<%#Container.DataItem("CategoryDesc")%>' runat="server"/> <BR> </EditItemTemplate><BR></asp:TemplateColumn><BR><BR>Thanks,<BR>D.Doh! Nevermind.<BR><BR>asp:TextBox id="CategoryDesc" TextMode="Multiline" Rows="12" Cols="50" Value='<%#Container.DataItem("CategoryDesc")%>' runat="server"/><BR><BR>TEXT = '<%#Container.DataItem("CategoryDesc")%>'<BR><BR><BR>