I need to display a string which has a white space on a asp.net page.
**Here is what I am doing:**
cell = New TableCell
cell.Text = value (lets assume value is <" test with whitespace ">
row.Cells.Add(cell)
and it gets rendered as
" test with whitespace "
whitespaces within single quotes are not displayed.
I want this value to be displayed as it is on my page.