将 ASP.NET 图表控件输出保存在服务器上?
我现在刚刚熟悉 .NET 图表控件。我想知道是否可以将图表的内容保存为服务器上的 .jpg 或类似文件。
我希望能够让用户下载文件或在非 .net 页面中将其显示给用户。
我认为应该可以做到这一点。如何?
I'm just now getting familiar with the .NET chart controls. I'd like to know if I can save the contents of a chart as a .jpg or similar file on the server.
I would like to be able to have the user download the file or display it to the user in a non-.net page.
I think it should be possible to do this. How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Chart.SaveImage
Look at Chart.SaveImage
中使用它
在 asp:chart ImageStorageMode="UseImageLocation"
ImageLocation="~/your server path"
ImageType="Png"
服务器路径 示例:~/Images/TempImages/compare
比较的是图像的名称
use this in asp:chart
ImageStorageMode="UseImageLocation"
ImageLocation="~/your server path"
ImageType ="Png"
server path example:~/Images/TempImages/compare
compare is the name of image