CodeBehind :
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { StockRep stockRep = new StockRep(); var items = stockRep.FindAllActiveStocks(); this.rcbRefNo.DataSource = items; this.rcbRefNo.DataTextField = "RefNo"; this.rcbRefNo.DataValueField = "StockId"; this.rcbRefNo.DataBind(); RadComboBoxItem rcbi = new RadComboBoxItem(); rcbi.Text = "--Select an Item--"; this.rcbRefNo.Items.Insert(0, rcbi); } } |
-
No comments:
Post a Comment