I have a datagrid that I am attempting to edit a row within. I have
no problem making the edit as long as my ID field for my DB is visible
within the datagrid. I access it using the following:
FLName = CType(CType(e.Item.Cells(1).Controls(0), TextBox).Text,
String)
However, if I make the field read only I receive an invalid paramater
error. If I make it hidden I receive an invalid data type. Any
suggestions on how to read this data for an update without making it
visible to the user?