示例#1
0
 void cargarDatosExistentes()
 {
     try
     {
         Clscoprologia c  = new Clscoprologia();
         DataTable     dt = new DataTable();
         dt = c.seleccionarTodos(int.Parse(Session["idPaciente"].ToString()));
         grdExistentes.DataSource = dt;
         grdExistentes.DataBind();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }