码迷,mamicode.com
首页 > 其他好文 > 详细

DropDownList默认选中

时间:2016-05-23 18:41:32      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

一、DropDownList默认选中

开始的笨方法:

                   foreach (ListItem item in DropDownList1.Items)
                       {
                        if (pet.Category == item.Text)
                       {
                       item.Selected = true;
                            break;
                         }
                       }

师傅指点后--》进化版: this.DropDownList1.Items.FindByText(pet.Sex).Selected = true;

DropDownList默认选中

标签:

原文地址:http://www.cnblogs.com/LOVEJIEYING/p/5520823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!