I'm using a datagrid, and I store the account number as a BOUND column.
I want it to be invisible, so I set the cell visible to false.

Easy enough, then in the code when I cycle through the datagrid items, I
find the account number by using:

Dim dgi As DataGridItem

AccountNum = dgi.Cells(1).text


When I do this, with the cell invisible, it correctly finds the account number.
But when I do a VIEW SOURCE, I see no sign of the account number in the HTML source, there is no hidden label, hidden table cell, nothing at all.
How does this work ( or IS it even working ). ???

Shouldn't the number be viewable in the html? This occurs in both VS 2003 and 2005.