private void cargarTipoProducto() { try { TipoProducto tp = new TipoProducto(); foreach (var item in tp.getAll()) { ListItem li = new ListItem(item.nombre.ToString(), item.id.ToString()); this.ddlTipoProducto.Items.Add(li); } } catch (Exception ex) { } }
private void cargarGrilla() { DataTable _tabla = new DataTable(); _tabla.Columns.Add("id"); _tabla.Columns.Add("nombre"); TipoProducto tp = new TipoProducto(); foreach (var item in tp.getAll()) { _tabla.Rows.Add(new Object[] { item.id, item.nombre }); } dgv_tipo_productos.DataSource = _tabla; dgv_tipo_productos.DataBind(); }