浏览 4032 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (3) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-04-30
最后修改:2009-05-05
foreach (Control controls in Page.Form.Controls) { if (controls is System.Web.UI.WebControls.DropDownList ) { System.Web.UI.WebControls.DropDownList c = (DropDownList)controls; c.Items.Add(new ListItem("所有","所有")); } }
foreach (Control controls in Page.Form.Controls) { if (controls.GetType()=="System.Web.UI.WebControls.DropDownList" ) { System.Web.UI.WebControls.DropDownList c = (DropDownList)controls; c.Items.Add(new ListItem("所有","所有")); } }
foreach (Control controls in Page.Form.Controls) { if (controls.GetType()== typeof(System.Web.UI.WebControls.DropDownList)) { System.Web.UI.WebControls.DropDownList c = (DropDownList)controls; c.Items.Add(new ListItem("所有","所有")); } }
foreach (Control controls in Page.Form.Controls) { if (controls.GetType().Equals(typeof(System.Web.UI.WebControls.DropDownList))) { System.Web.UI.WebControls.DropDownList c = (DropDownList)controls; c.Items.Add(new ListItem("所有","所有")); } } 以上4种写法都可以,我也是主要学习一下typeof和gettype()的用法 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2009-05-06
$('input[type=select]').val('所有')
哈哈 |
|
返回顶楼 | |
发表时间:2009-05-06
lobbychmd 写道 $('input[type=select]').val('所有') 哈哈 大哥,能不用jquery不 |
|
返回顶楼 | |