I have a datagrid that I populate from a database. I put the grid into edit mode and change the text in one of the textboxes. I click the update link and go to a sub
that does a response.write of the datagrid textbox.
Dim LName As textbox
Dim strTest As string
LName = e.item.cells(2).controls(0)
strTest = LName.text
Response.Write(strTest)
I expect to get the value I entered into the datagrid textbox, but what I get is the original value in that cell of the textbox.
What am I missing here?
Thanks
Tom T
that does a response.write of the datagrid textbox.
Dim LName As textbox
Dim strTest As string
LName = e.item.cells(2).controls(0)
strTest = LName.text
Response.Write(strTest)
I expect to get the value I entered into the datagrid textbox, but what I get is the original value in that cell of the textbox.
What am I missing here?
Thanks
Tom T