我有一个包含 5 个用户控件的页面。我想用它们做更多的事情,但现在,我只想用下面的方法来计算它们。
void btnFormSave_Click(object sender, EventArgs e)
{
int i = 0;
ControlCollection collection = Page.Controls;
foreach (Control ctr in collection)
{
if (ctr is UserControl)
{
i++;
}
}
}
当我调试这段代码时,i = 1,并且控件是母版页(我不知道母版页是用户控件)。
如何计算页面上的用户控件?
编辑
这是我的内容占位符标记。
<asp:Content ID="cntMain" runat="Server" ContentPlaceHolderID="ContentMain">