关于 jquery 和 .NET 的基本问题
我想制作一个页面,以便可以在“jquery 弹出窗口”中选择过滤器,但我不知道如何接收结果。
假设我有一个带有 ListView 的页面,并且我想为其选择过滤器(可能从列表中进行多项选择),所以我制作了一个不同的 ASPX 并使用 jquery 打开它(实际上 jqModal) 通过 ajax,用户选择过滤器并接受。
如何获得该选择来重新绑定我的 ListView?
(...)
我刚刚在 jQuery 弹出窗口中选择了上面链接的 URL,这正是我想要做的...它是如何完成的?
I want to make a page so I can select filters in a "jquery popup", but I don't know how to receive the results.
Suppose I have a page with a ListView, and I want to select filters for it (perhaps with multiple selection from a list), so I make a different ASPX and open it using jquery (actually jqModal) via ajax, the user selects the filters, and accepts.
How do I get that selection to rebind my ListView?
(...)
I just selected the URL for the link above in a jQuery popup, that's exactly what I want to do... how is it accomplished?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最简单的解决方案是使用 style="display:none" 的 asp 按钮。 在关闭弹出窗口的 javascript 函数中,假装单击该按钮。 然后有一个常规的事件处理程序来重新绑定您的列表视图。
HTML:
Javascript:
服务器端:
btnFilter_Click 进行正常过滤。
I think the simplest solution would be to have an asp button with style="display:none". In the javascript function which closes the popup, fake a click on that button. Then have a regular event handler to rebind your listview.
HTML:
Javascript:
Server Side:
btnFilter_Click todo normal filtering.