Bound Data problem < >

  • Thread starter Thread starter JezB
  • Start date Start date
J

JezB

I'm binding a DataGrid web-control to data fetched from a database. However
some of my data fields contain text that is within <...> characters - I
notice that everything between the <> is suppressed in the grid. How can I
resolve this ?
 
HttpUtility.HtmlEncode( value) will replace all the < with &lt; .

Alex Papadimoulis
 
Back
Top