protected void EventLogMessagesGridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
e.Row.Cells[0].Text = e.Row.Cells[0].Text.Replace(System.Environment.NewLine, "<br/>");
}
If you have a better way, please let me know.
Tip Submitted By: David McCarter