Ver Mensaje Individual
  #9 (permalink)  
Antiguo 02/06/2010, 03:43
Avatar de mihina
mihina
 
Fecha de Ingreso: mayo-2010
Ubicación: Girona
Mensajes: 32
Antigüedad: 14 años, 6 meses
Puntos: 1
Respuesta: Ayuda conexión odbc y web.config

Si :S ami me sale este error en c# con visual estudio 2005; este es todo el codigo ke tengo en aspx.cs
Gracias!!

int filasel = this.GridView1.SelectedIndex;

string strcon = ConfigurationManager.ConnectionStrings("OdbcHotel" ).ConnectionString;
OdbcConnection con = new OdbcConnection(strcon);
OdbcCommand catCMD = new OdbcCommand("Delete from Habitacion where HHabitacion=" + filasel, con);
con.Open();
catCMD.ExecuteNonQuery();
con.Close();

Última edición por mihina; 02/06/2010 a las 03:48