如何从asp.net中的jquery模态弹出窗口更新标签值
我有一个页面,product.aspx。在此页面内,我有一个标签,显示添加到购物篮的产品数量。我还有 viewcart.aspx 页面来显示我的购物车项目并编辑或删除产品。
一切都很好,但是当我从 viewcart.aspx 中删除产品时,我想减少 Product.aspx 上的标签值。我怎样才能做到这一点?
我使用这个 jQuery 在模态弹出窗口上显示 viewcart.aspx: http://deseloper.org/examples/simple-modal-redux/
我也尝试使用
Label lbl = (Label)this.PreviousPage.FindControl("countlbl");
我该如何解决这个问题?
I have a page, product.aspx. Inside this page I have a label that shows the count of products added to basket. I also have viewcart.aspx page to show my cart item and edit or delete product.
Everything is well but when I delete a product from viewcart.aspx, I want to decrement the label value on product.aspx. How can I do that?
I use this jQuery to show viewcart.aspx on modal popup:http://deseloper.org/examples/simple-modal-redux/
also I've tried to use
Label lbl = (Label)this.PreviousPage.FindControl("countlbl");
How can I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 viewcart.aspx 页面中,您可以添加一些 jQuery 以在关闭时触发(即在 onUnload 事件上):
In the viewcart.aspx page, you could add some jQuery to fire when it closes (i.e. on the onUnload event):