Tengo este codigo para guardar en una base de datos sql pero no se que propiedad se le pone al calendar para que me guarde en la base de datos lo que esta en rojo ahi va propiedad del calendar pra que me guarde en la bse de datos y me sale este error
error al registrarConversion failed when converting date and/or time from character string.
String strConexion;
String strSQL;
SqlConnection conexionSQL;
SqlCommand comandoSQL;
strConexion = "Data Source=GERARDO-PC\\GERARDO;" +
"Initial Catalog=Inmuebles;" +
"Integrated Security=True";
strSQL = "INSERT INTO m_inmuebles " +
"VALUES('"+Unidad_solicita.Text+"','"+
Area.Text + "','" +
Convert.ToString(Calendar1.SelectedDate)+ "','" +
Descripcion_servicio.SelectedItem.Text + "','" +
Prioridad_servicio.SelectedItem.Text +"','"+
Descripcion_breve.Text+"')";
conexionSQL=new SqlConnection(strConexion);
try
{
conexionSQL.Open();
comandoSQL = new SqlCommand(strSQL, conexionSQL);
comandoSQL.ExecuteNonQuery();
Label9.Visible = true;
Label9.Text = "El usuario se dio de alta correctamente";
}
catch (Exception ex)
{
Label9.Visible = true;
Label9.Text = "error al registrar" + ex.Message;
}
finally
{
conexionSQL.Close();
}
}
}