示例#1
0
 protected void Fill_Artist_Dropdown()
 {
     FanServices.ArtistNames[] artists = showtracker.GetArtistNames();
     ArtistDropDownList.DataSource     = artists;
     ArtistDropDownList.DataValueField = "ArtistKey";
     ArtistDropDownList.DataTextField  = "ArtistName";
     ArtistDropDownList.DataBind();
 }