Пример #1
0
        protected void UpdatePlayer_Click(object sender, EventArgs e)
        {
            string name  = UpdateName.Text;
            string email = UpdateEmail.Text;
            string pName = DropDownListPlayers.SelectedItem.ToString();

            List <string> nList = client.UpdatePlayer(name + " " + email + " " + pName).Split('*').ToList <string>();


            DropDownListPlayers.DataSource = nList;
            DropDownListPlayers.DataBind();
        }