//////////////////////////////ArtistListDropDownList////////////////////////////
    protected void ArtistListDropDownList_SelectedIndexChanged(object sender, EventArgs e)
    {
        ServiceReference.ShowInfo artists = new ServiceReference.ShowInfo();

        ArtistListDropDownList.DataSource = artists;
        ArtistListDropDownList.DataBind();
    }
    ////////////////////ShowNameDropDownList_SelectedIndexChanged///////////////////////
    protected void ShowNameDropDownList_SelectedIndexChanged(object sender, EventArgs e)
    {
        ServiceReference.ShowInfo shows = new ServiceReference.ShowInfo();

        ShowNameDropDownList.DataSource = shows;
        ShowNameDropDownList.DataBind();
    }