Ejemplo n.º 1
0
 void cargarDatosExistentes()
 {
     try
     {
         ClsImagenPaciente im = new ClsImagenPaciente();
         DataTable         dt = new DataTable();
         dt = im.seleccionar(int.Parse(Session["idPaciente"].ToString()));
         grdExistentes.DataSource = dt;
         grdExistentes.DataBind();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }