摘要: public class ControlTools { public static void SetListBoxItem(ListBox listBox,string sItemValue) { int index = 0; foreach(ListItem item in listBox.Items) { ///判断值是否相等,并且设置控件的SelectedIndex if(item.Value.... 阅读全文
posted @ 2011-11-22 17:53 kumat 阅读(1651) 评论(0) 推荐(0) 编辑