ListView DataBound 表示 Items > 0 当实际 Items <= 0 时
因此,我在 UpdatePanel 中有一个 ListView (指派列表视图),并由同一 UpdatePanel 中的 DropDownList 进行过滤。 DropDownList 中有一个人员列表并使用自动回发,ListView 显示这些人员分配到的任务。
我正在尝试使用与此类似的代码:
protected void assignmentsListView_DataBound(object sender, EventArgs e)
{
string resFirstName = Utilities.getResourceFirstName(resDdl.SelectedValue);
if (assignmentsListView.Items.Count <= 0)
{
//Show error message
}
else
{
//Try to find the ImageButton in the ListView's header template.
ImageButton exportButton = (ImageButton)assignmentsListView.FindControl("ImageButton3");
//Register this button as a PostBack event in the Master Page
ScriptManager scriptManager = ScriptManager.GetCurrent(this.Page);
ScriptManager.RegisterPostBackControl(exportButton);
}
}
当我第一次加载页面时,DropDownList 显示列表中的第一个人,并且 ListView 正确显示该人的任务。
如果我选择一个我知道有零个任务的人,我会在 RegisterPostBackControl() 方法中收到错误,指出传入的控件不能为空。
调试时,在 RegisterPostBackControl 方法处,显示 ListView Items 集合中有 >0 个元素(元素数量与当前人员之前选择的人员匹配)。
这是怎么回事?有什么建议吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Asp.Net Web 窗体应用程序中,事件的顺序并不总是您想要的。对于您的情况,执行此方法后可能会应用新的人员选择。您可以做的最好的事情是在较早的事件中强制数据绑定(例如 Page_Init)
In Asp.Net Web Forms applications, the order of events are not always what you'd want. For your case, the new person selection is probably applied after this method is executed. The best thing you could do is force databindings in an earlier event (like Page_Init)