SHOWcode

2018年4月11日 星期三

C#.NET 換DropDownList內容的值


//更換DropDownList內容的值,依資料表所查到的值來變動
    void ChangDropDownList(DropDownList DDL, String CheckStr)
    {


        if (DDL.SelectedIndex >= 0)
        {
            DDL.SelectedItem.Selected = false;
            for (int i = 0; i <= DDL.Items.Count - 1; i++)
            {

                if (DDL.Items[i].Text == CheckStr)
                {
                    DDL.Items[i].Selected = true;
                    break;
                }
                else
                {
                    DDL.Items[i].Selected = false;
                }
            }
        }


    }

沒有留言:

張貼留言

Jenkins-mail

參考:http://www.linuxea.com/1767.html 前置作業略過~有空再補 Mailer Plugin post { success { emailext ( subject: &...