I have same problem.
before my code is like this:
Dim NewTagName12 As String = (CType(GridView1.Rows(e.RowIndex).Cells(12).Controls(0), TextBox)).Text
the error message is "DateTime String was not recognized as a valid DateTime" when update.
then I change to:
Dim NewTagName12 As String = Date.ParseExact(CType(GridView1.Rows(e.RowIndex).Cells(12).Controls(0), TextBox).Text(), "MM/dd/yy", New Globalization.DateTimeFormatInfo)
the error message is : "String was not recognized as a valid DateTime." when update.
does somebody know how to change this code?