private void LoadDDLEstado() { DDLEstado.DataSource = new bdaula4Entities().estado.ToList <estado>(); DDLEstado.DataValueField = "id"; DDLEstado.DataTextField = "descricao"; DDLEstado.DataBind(); }
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { //En esta seccion se llena el ddl de estados Estado_orden eo = new Estado_orden(); eo.LoadAll(); DDLEstado.DataSource = eo.DefaultView; DDLEstado.DataTextField = Estado_orden.ColumnNames.Nombre_estado; DDLEstado.DataValueField = Estado_orden.ColumnNames.Id_estado; DDLEstado.DataBind(); DDLEstado.Items.Insert(0, "Todas las órdenes"); int dty = DateTime.Now.Year; //En esta seccion se llenan los ddl del anno de la fecha for (int i = 2010; i < DateTime.Now.Year + 1; i++) { DDLFechaDAnno.Items.Add("" + i); DDLFechaAAnno.Items.Add("" + i); } } }