protected void Page_Load(object sender, EventArgs e) { id = int.Parse(Request.QueryString["id"].ToString()); DAL.DALRota p = new DAL.DALRota(); Modelo.Rota rota = p.Select(id); if (!IsPostBack) { TextBox1.Text = rota.nome; DAL.DALBairro dal_bairro = new DAL.DALBairro(); ListItem li; foreach (Modelo.Bairro b in dal_bairro.SelectAll()) { li = new ListItem(); li.Text = b.Nome; li.Value = (b.Id).ToString(); if (p.HasBairro(b.Id, rota.id)) { li.Selected = true; } ListBoxBairro.Items.Add(li); } DAL.DALPonto_referencia dal_referencia = new DAL.DALPonto_referencia(); foreach (Modelo.Ponto_referencia ponto in dal_referencia.SelectAll()) { li = new ListItem(); li.Text = ponto.Nome; li.Value = (ponto.Id).ToString(); if (p.HasReferencia(ponto.Id, rota.id)) { li.Selected = true; } ListBoxReferencia.Items.Add(li); } } }
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { /*DALBairro dal_bairro = new DALBairro(); * ListItem li; * foreach (Bairro b in dal_bairro.SelectAll()) * { * li = new ListItem(); * li.Text = b.Nome; * li.Value = (b.Id).ToString(); * CheckBoxListBairro.Items.Add(li); * } * DALPonto_referencia dal_referencia = new DALPonto_referencia(); * foreach (Ponto_referencia p in dal_referencia.SelectAll()) * { * li = new ListItem(); * li.Text = p.Nome; * li.Value = (p.Id).ToString(); * CheckBoxListReferencia.Items.Add(li); * }*/ DAL.DALBairro dal_bairro = new DAL.DALBairro(); ListItem li; foreach (Modelo.Bairro b in dal_bairro.SelectAll()) { li = new ListItem(); li.Text = b.Nome; li.Value = (b.Id).ToString(); ListBoxBairro.Items.Add(li); } DAL.DALPonto_referencia dal_referencia = new DAL.DALPonto_referencia(); foreach (Modelo.Ponto_referencia ponto in dal_referencia.SelectAll()) { li = new ListItem(); li.Text = ponto.Nome; li.Value = (ponto.Id).ToString(); ListBoxReferencia.Items.Add(li); } } }