Code to populate combo

  • Thread starter Thread starter Mark Goldin
  • Start date Start date
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();

}
 
Inside a class definition.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top