设置页面所有控件
private void InItControl( ControlCollection connection)
{
foreach (System.Web.UI.Control ctrl in connection)
{
if (ctrl.HasControls())
{
InItControl(ctrl.Controls);
}
else
{
if (ctrl is System.Web.UI.WebControls.TextBox)
{
((TextBox)ctrl).ReadOnly = true;
}
if (ctrl is System.Web.UI.WebControls.DropDownList)
{
((DropDownList)ctrl).Enabled = false;
}
if (ctrl is System.Web.UI.WebControls.RadioButtonList)
{
((RadioButtonList)ctrl).Enabled = false;
}
if (ctrl is System.Web.UI.WebControls.CheckBox)
{
((CheckBox)ctrl).Enabled = false;
}
if (ctrl is System.Web.UI.WebControls.Button)
{
((Button)ctrl).Enabled = false;
}
if (ctrl is System.Web.UI.WebControls.LinkButton)
{
((LinkButton)ctrl).Enabled = false;
}
}
}
}
在我的页面上目前只有这些控件 有其他需要设置的 按照方法向上加就是
在调用的时候写InItControl(Page.Controls);
{
foreach (System.Web.UI.Control ctrl in connection)
{
if (ctrl.HasControls())
{
InItControl(ctrl.Controls);
}
else
{
if (ctrl is System.Web.UI.WebControls.TextBox)
{
((TextBox)ctrl).ReadOnly = true;
}
if (ctrl is System.Web.UI.WebControls.DropDownList)
{
((DropDownList)ctrl).Enabled = false;
}
if (ctrl is System.Web.UI.WebControls.RadioButtonList)
{
((RadioButtonList)ctrl).Enabled = false;
}
if (ctrl is System.Web.UI.WebControls.CheckBox)
{
((CheckBox)ctrl).Enabled = false;
}
if (ctrl is System.Web.UI.WebControls.Button)
{
((Button)ctrl).Enabled = false;
}
if (ctrl is System.Web.UI.WebControls.LinkButton)
{
((LinkButton)ctrl).Enabled = false;
}
}
}
}
在我的页面上目前只有这些控件 有其他需要设置的 按照方法向上加就是
在调用的时候写InItControl(Page.Controls);
本文来自博客园,作者:古道轻风,转载请注明原文链接:https://www.cnblogs.com/88223100/archive/2008/06/26/1230093.html
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步