我在下拉列表值中有以下一些值:
9:00 AM-10:00 AM
10:00 AM-11:00 AM etc.
我想在dotnet的数据库中插入上述值。 但是在执行程序时,它会显示"输入字符串格式不正确"。
我的代码如下:
int d = Convert.ToInt32(drdTimeInterval.SelectedValue);
con.Open();
SqlCommand cmd = new SqlCommand("insert into Slot values(@Slot_id,@Slot time)", con);
cmd.Parameters.AddWithValue("@Slot_id", txtSlotId.Text);
cmd.Parameters.AddWithValue("@Slot time",d);
cmd.ExecuteNonQuery();
任何人都可以帮助我,为什么我会收到上述错误,以及是否有更简单的方法可以做到这一点?