我正在将文本框中的值保存回数据库。如何将在文本框中输入的数字保存回数据库。我已经尝试了以下但得到一个错误说Input string was not in a correct format
newCarsRow.CustomerID = Convert.ToInt32(TextBox5.Text);
//I have also tried
newCarsRow.CustomerID = int.Parse(TextBox5.Text);
我正在保存输入到文本框中的文本,如下所示
newCarsRow.Surname = TextBox1.Text.ToString();