我需要设置一个标签文本,它是列表视图,并且列表视图在登录模板中。我无法设置标签的值。这是下面的代码。
ListView ListView1 = (ListView)LoginView.FindControl("ListView1");
for (int i = 0; i < ListView1.Controls.Count; i++)
{
Label someLabel = (Label)ListView1.Controls[i].FindControl("nItemsId");
if (someLabel != null)
someLabel.Text = dt.Rows.Count.ToString();
}