When I call
TA.Update(row)
I receive the following error, but I have no idea how to debug it. Is there a way to determine which exact field is causing the issue?
Server Error in '/' Application.
Input string was not in a correct format.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.FormatException: Input string was not in a correct format.
Source Error:
Line 7381: Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")> _ Line 7382: Public Overloads Overridable Function Update(ByVal dataRow As Global.System.Data.DataRow) As Integer Line 7383: Return Me.Adapter.Update(New Global.System.Data.DataRow() {dataRow}) Line 7384: End Function Line 7385:
Source File: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\root\aebf90fc\865092c3\App_Code.6h2d5goz.23.vb Line: 7383
Stack Trace:
[FormatException: Input string was not in a correct format.] System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) +14365689 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) +305 System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) +859 System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType, Boolean& coercedToDataFeed, Boolean& typeChanged, Boolean allowStreaming) +1809
[FormatException: Failed to convert parameter value from a String to a Int32.] System.Data.Common.DbDataAdapter.UpdatedRowStatusErrors(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, Int32 commandCount) +2290668 System.Data.Common.DbDataAdapter.UpdatedRowStatus(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, Int32 commandCount) +75 System.Data.Common.DbDataAdapter.Update(DataRow[] dataRows, DataTableMapping tableMapping) +3479 System.Data.Common.DbDataAdapter.Update(DataRow[] dataRows) +319 adsTableAdapters.adsTableAdapter.Update(DataRow dataRow) in C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\root\aebf90fc\865092c3\App_Code.6h2d5goz.23.vb:7383 editad.lbSaveLocation_Click(Object sender, EventArgs e) in C:\Dropbox\inetpub\zz\editad.aspx.vb:765 System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument) +153 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3804
Tried adding check on errors like so, but no errors occur:
Try
If TA.Update(row) = 1 Then
End If
Catch ex As Exception
Dim arr As Array = row.Table.GetErrors()
'arr.length=1 here
If arr.Length > 0 Then
lblStatus.Text = row.Table.GetErrors(0).ToString
'the value of row.Table.GetErrors(0).ToString is "ads+adsRow"
End If
End Try