private void RepeaterItemDataBound(object o, ControlsBookLib.Ch07.RepeaterItemEventArgs rie) { ControlsBookLib.Ch07.RepeaterItem item = rie.Item; DbDataRecord row = (DbDataRecord)item.DataItem; string ID = (string)row["CustomerID"]; Label lblID = (Label)item.FindControl("lblID"); lblID.Text = ID; }
private void RepeaterItemCreated(object o, ControlsBookLib.Ch07.RepeaterItemEventArgs rie) { ControlsBookLib.Ch07.RepeaterItem item = rie.Item; if (item.ItemType == ListItemType.Item) { Label lblID = new Label(); lblID.ID = "lblID"; item.Controls.Add(lblID); item.Controls.Add(new LiteralControl(" ")); } }