views:

118

answers:

1

Are there any ASP.NET GridView's RowCreated, RowDataBound counterpart methods?

All I want is to break a string into lines before displaying. I've put Environment.NewLine to create a line break but have no success till now. So I think I need to RowCreated or RowDataBound, etc. events to make modifications.

A: 

Would it not be better to just preprocess the data?

Wade73