D Darren Clark Aug 3, 2004 #2 In the page Load event is one place... simple eg. private void Page_Load(object sender, System.EventArgs e) { this.Paid.DataSource = GetData(); this.Paid.DataBind(); }
In the page Load event is one place... simple eg. private void Page_Load(object sender, System.EventArgs e) { this.Paid.DataSource = GetData(); this.Paid.DataBind(); }
K Kevin Spencer Aug 3, 2004 #3 Inside a class definition. -- HTH, Kevin Spencer ..Net Developer Microsoft MVP Big things are made up of lots of little things.
Inside a class definition. -- HTH, Kevin Spencer ..Net Developer Microsoft MVP Big things are made up of lots of little things.