Greetings, I have spent too long on your site searching for an answwer with no luck.
How does one change the text in a cell based on the following text?
if(e.Row.Cells["OutTSUpdated"].Text != "")
{
e.Row.Cells["OutTS"].Text = "*" + e.Row.Cells["OutTSUpdated"].Text;
}
Regds
Hi Paul,
I'm not entirely sure I understand what you are asking. You can't set the Text property on a cell - Text is read-only and returns what the user sees on the screen. In order to set it, you need to use the Value property instead.
oh yes, i forgot to add that this OutTS cell is simply diplaying a value and is not expected to change or be changed/edited/etc. it iis just a cell display value.