Example #1
0
 protected void PopulateArtistList()
 {
     string[] artists = ssc.GetArtistName();
     ArtistDropDownList.DataSource = artists;
     ArtistDropDownList.DataBind();
     ArtistDropDownList.Items.Add("New Artist");
 }
Example #2
0
 protected void Fill_Artist_Dropdown()
 {
     FanServices.ArtistNames[] artists = showtracker.GetArtistNames();
     ArtistDropDownList.DataSource     = artists;
     ArtistDropDownList.DataValueField = "ArtistKey";
     ArtistDropDownList.DataTextField  = "ArtistName";
     ArtistDropDownList.DataBind();
 }
 protected void FillArtistDropDown()
 {
     SelectServiceReference.Artist[] artists = stc.GetArtists();
     ArtistDropDownList.DataSource     = artists;
     ArtistDropDownList.DataTextField  = "ArtistName";
     ArtistDropDownList.DataValueField = "ArtistKey";
     ArtistDropDownList.DataBind();
 }
Example #4
0
 protected void FillArtistDropDown()
 {
     string[] artists = bsc.GetArtists();
     ArtistDropDownList.DataSource = artists;
     ArtistDropDownList.DataBind();
 }