我在lblcompname
中定义了一个标签DataList
,它有一个常量值。我想在页面加载时隐藏此标签。
我的代码,
foreach (DataListItem item1 in dlDatalist.Items)
{
Label myTempLabel = (Label)item1.FindControl("lblcompname");
myTempLabel.Visible = false;
}
我在页面加载时尝试了此代码,但dlDatalist.items
为空。
我还在ItemDataBound
的{{1}}中尝试了此代码,但这也是空的。