i should be able to run this code at any time to get the value from the textbox.



Code:
for each row as gridviewrow in gridview1.rows
  dim sNewValue as string = ctype(row.cells(2).findcontrol("mytextbox"),textbox).text
next

I have done it this way in the past without a hitch...