Excel 导出后更新 ASP.NET 页面
我正在使用 Response.Write、Response.End 导出到 Excel/Word/csv。有没有办法做到这一点,同时也能够更改页面上的文本?例如,我在 UpdatePanel 中有一个控件,我想使其可见/不可见。
I'm using Response.Write, Response.End to export to Excel/Word/csv. Is there a way to do this and also be able to change text on the page at the same time? For example, I have a controls within an UpdatePanel which I want to make visible/invisible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过 AJAX 操作更新您的页面,并在此过程中编写一些 javascript 来调用执行实际导出的单独页面/处理程序。
Update your page via the AJAX action and, in the process, write out some javascript that calls a separate page/handler that does the actual export.