Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         var repo = new CityRepository();
         gridCity.DataSource = repo.GetAllByOrder();
         gridCity.DataBind();
         Session["Result"] = gridCity.DataSource;
     }
 }