public string Città { get { return lblCitta.Text; } set { lblCitta.Text = value } }
private List<Accomodation> _hotels public List<Accomodation> Hotels { get { if(_hotels == null) { _hotel = new List<Accomodation>(); } return _hotel } set { _hotels = value; } } public override DataBind() { GridView1.DataSource = Hotels; GridView1.DataBind(); }
Torna al forum | Feed RSS