Ejemplo n.º 1
0
        protected void OnRowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            FlightsService service = Service.getInstanse().flightService;
            string         city    = GridView.Rows[e.RowIndex].Cells[1].Text;

            if (service.DeleteCity(city))
            {
                LoadData();
            }
        }