asp.net 网站中列表框计数的问题
<asp:ListBox ID="ListBoxMembers" runat="server" SelectionMode="Multiple"
DataValueField="FirstName"></asp:ListBox>
我在弹出窗口中有这个列表框,当用户选择多个用户并单击“保存”按钮时,将执行
int countSelected = ListBoxMembers.Items.Cast<ListItem>().Where(i => i.Selected).Count();
string groupName = txt_GroupName.Text;
var selectedNames = ListBoxMembers.Items.Cast<ListItem>().Where(i => i.Selected).Select(i => i.Value).ToList();
foreach(var FirstName in selectedNames)
{
Query
}
这里操作,countSelected 和 selectedNames 始终为 0。我哪里出错了。 我对列表框进行数据绑定
<asp:ListBox ID="ListBoxMembers" runat="server" SelectionMode="Multiple"
DataValueField="FirstName"></asp:ListBox>
I have this list box inside a pop up, When the user selects multiple user and click save button this is executed
int countSelected = ListBoxMembers.Items.Cast<ListItem>().Where(i => i.Selected).Count();
string groupName = txt_GroupName.Text;
var selectedNames = ListBoxMembers.Items.Cast<ListItem>().Where(i => i.Selected).Select(i => i.Value).ToList();
foreach(var FirstName in selectedNames)
{
Query
}
Here, the countSelected and selectedNames is always 0. where am i going wrong.
I databind the listbox
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测是您也在回发上进行数据绑定,因此在事件处理程序执行之前列表会重新填充。
My guess is you databind on Postbacks too so the list gets repopulated before your event handler executes.