Пример #1
0
 protected void llenarGrid()
 {
     try
     {
         DataTable dt = DatosSupervisor.ListarSupervisor();
         GridView.DataSource = dt;
         GridView.DataBind();
     }
     catch (Exception e)
     {
         throw new Exception(e.Message);
     }
 }