如何将数组(数组集合)数据导出到html表格或文本文件中
嘿大家, 我有一个字符串和整数的数组集合(我已将其显示在数据网格中),我想知道是否可以将数组集合导出到 html 表中?甚至是供用户下载的文本文件
我发现一些页面可以导出到 .xls 文件,但我现在想远离它。
提前致谢!
Hey all,
I have an array collection of strings and integers (which I have displayed in a data grid) and I am wondering if it is possible to export the array collection into an html table? or even a text file for the user to download
I found some pages that had an export to .xls files but I want to stray away from that for now.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以将 DataGrid 导出到 HTML 表或文本文件。
但您必须编写自己的转换例程才能执行此操作。如果您希望用户下载文件,您很可能需要将数据发送回服务器并让该服务器处理它;然后向用户发送下载链接。
Yes, you can export a DataGrid to an HTML table or a text file.
But you'll have to write your own conversion routine to do so. If you want the user to download a file, you'll most likely need to send the data back to the server and have that server process it; then send the user a download link.