asp.net母版页和用户控件的问题
在单独一个ASPX可以获取前台的控件stringStrTextBoxID="TB1,TB2,TB3,TB4,DDL1,DDL2";stringemptyValueMess...
在单独一个ASPX可以获取前台的控件
string StrTextBoxID = "TB1,TB2,TB3,TB4,DDL1,DDL2";
string emptyValueMessage = string.Empty;
foreach(Control col in this.Page.From.Controls)
{
if(col is TextBox)
{
TextBox txt = (TextBox)col;
if(StrTextBoxID.Contains(txt.ID))
{
if(string.IsNullOrEmpty(txt.Text))
emptyValueMessage+=string.Format("ID:{0}的控件未赋值",txt.ID);
}
}
if(col is DropDownList)
{
DropDownList ddl = (DropDownList)col;
if(StrTextBoxID.Contains(ddl.ID))
{
if(ddl.Items.Count==0)
emptyValueMessage+=string.Format("ID:{0}的控件未赋值",txt.ID);
}
}
}
但是如果控件是在Ascx里面,Aspx引用模板把Ascx丢进去,就找不到了 展开
string StrTextBoxID = "TB1,TB2,TB3,TB4,DDL1,DDL2";
string emptyValueMessage = string.Empty;
foreach(Control col in this.Page.From.Controls)
{
if(col is TextBox)
{
TextBox txt = (TextBox)col;
if(StrTextBoxID.Contains(txt.ID))
{
if(string.IsNullOrEmpty(txt.Text))
emptyValueMessage+=string.Format("ID:{0}的控件未赋值",txt.ID);
}
}
if(col is DropDownList)
{
DropDownList ddl = (DropDownList)col;
if(StrTextBoxID.Contains(ddl.ID))
{
if(ddl.Items.Count==0)
emptyValueMessage+=string.Format("ID:{0}的控件未赋值",txt.ID);
}
}
}
但是如果控件是在Ascx里面,Aspx引用模板把Ascx丢进去,就找不到了 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询