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;
}
}
}
}
訂閱:
張貼留言 (Atom)
Jenkins-mail
參考:http://www.linuxea.com/1767.html 前置作業略過~有空再補 Mailer Plugin post { success { emailext ( subject: &...
-
ASP.NET刷新頁面的六種方法 第一: private void Button1_Click( object sender, System.EventArgs e ) { Response.Redirect( Request.Url.ToSt...
-
foreach (string fname in System.IO.Directory.GetFileSystemEntries(@"C:\Users\joshs")) { //if (fn...
沒有留言:
張貼留言