asp.net刷新网格而不重新加载页面
我有一个 Asp.Net
Gridview
,它绑定到代码隐藏文件中的 DataSet
。单击页面上的按钮时会发生此 gridview 绑定。但是单击该按钮后,整个页面都会刷新...并且该页面上已有预先存在的 Asp.Net 图表,该图表由于页面刷新而消失。
现在,我可以使用更新面板来避免这种情况。但是按钮和网格应该位于更新面板的同一 Div 中。对我来说,按钮位于页面的其他位置......网格位于底部的某个位置。
无论如何,有没有办法只重新加载网格而不干扰页面中的其他元素。现在请不要用 updatePanel 回答,因为我已经使用过它并且您知道问题所在。如果您有更好的解决方案或使用 AJAX
,请回答这个问题。
非常感谢,
曼尼什
I have a Asp.Net
Gridview
which is binded to a DataSet
in the code behind file. This gridview binding happens on click of a button the page. But on click of that button, the whole page is refreshed... and I have pre-existing Asp.Net chart on that page which disappears due to page refresh.
Now, I can avoid this using a update panel.. but the button and grid should be in the same Div of update panel. For me, the button is somewhere else in the page... and the grid is somewhere in the bottom.
Is there anyway to reload only the grid without disturbing other elements in the page.. now please don't answer with updatePanel, coz I've used it and you know the problem. Please answer this if you've had a better solution or with AJAX
.
Thanks a lot,
Manish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没问题!
现在您已经看到了 - 页面某一部分中的一个按钮触发页面另一部分的更新面板中的异步回发。
Not a problem!
And there you have it - a button in one part of the page triggering an async-postback in an Update Panel in a different part of the page.
只需使用更新面板的触发器
Just use triggers for your update panel