這是代碼,在SQL列ID_C
和CALLE
是int
類型,我正在寫一個C#應用程序添加註冊表,錯誤是在保存按鈕,在int類型的文本框。不能隱式地將類型'字符串'轉換爲'int'c#
有人幫助我!
private void btnGuardar_Click(object sender, EventArgs e)
{
Cliente Cliente = new Cliente();
Cliente.ID_C = txtID.Text= Cliente.ID_C.ToString();
Cliente.NOMBRES = txtNombres.Text;
Cliente.CONTACTO = txtCorreo.Text;
Cliente.CALLE = txtCalle.Text;
Cliente.NUMERO = txtNumero.Text= Cliente.NUMERO.ToString();
Cliente.COLONIA = txtColonia.Text;
Cliente.FECHA_ALTA = txtFecha.Text;
int resultado = ClienteDAL.Agregar(Cliente);
if (resultado > 0)
{
MessageBox.Show("Datos guardados con exito", "Datos Guardado", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else
{
MessageBox.Show("No se grabaron los datos", "Error al guardar", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
private void btnCerrar_Click(object sender, EventArgs e)
{
this.Close();
}
}
歡迎來到SO!請在提問前使用搜索:http://stackoverflow.com/questions/1019793/how-can-i-convert-string-to-int – Ivan 2014-11-22 07:27:16
你認爲錯誤的含義是什麼? – 2014-11-22 07:35:22