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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top