如何使用 RADGrid Control 在 Asp.net 2010 中从 Excel、PDF 或 Word 获取数据?
当我在服务器上上传 RADGrid 控件时出现错误,它运行正常,但是当我将数据导出到 PDF、Word 或 Excel 时,不显示数据,只显示像这样的 html 标签
<span class=highlight></span>M<span class=highlight></span>M<span class=highlight></span>/<span class=highlight></span>P<span class=highlight></span>I<span class=highlight></span>/<span class=highlight></span>G<span class=highlight></span>U<span class=highlight></span>D<span class=highlight></span>M<span class=highlight></span>/<span class=highlight></span>8<span class=highlight></span>
,我使用的代码如下:
protected void ExportToPdf_Click(object sender, ImageClickEventArgs e)
{
RadGrid1.MasterTableView.ExportToPdf();
}
protected void ExportToExcel_Click(object sender, ImageClickEventArgs e)
{
RadGrid1.MasterTableView.ExportToExcel();
}
protected void ExportToWord_Click(object sender, ImageClickEventArgs e)
{
RadGrid1.MasterTableView.ExportToWord();
}
i am getting error when i upload RADGrid Control on server it run properly but when i export data into PDF or Word or Excel, not display data only display html tags like this
<span class=highlight></span>M<span class=highlight></span>M<span class=highlight></span>/<span class=highlight></span>P<span class=highlight></span>I<span class=highlight></span>/<span class=highlight></span>G<span class=highlight></span>U<span class=highlight></span>D<span class=highlight></span>M<span class=highlight></span>/<span class=highlight></span>8<span class=highlight></span>
I'm using code like this:
protected void ExportToPdf_Click(object sender, ImageClickEventArgs e)
{
RadGrid1.MasterTableView.ExportToPdf();
}
protected void ExportToExcel_Click(object sender, ImageClickEventArgs e)
{
RadGrid1.MasterTableView.ExportToExcel();
}
protected void ExportToWord_Click(object sender, ImageClickEventArgs e)
{
RadGrid1.MasterTableView.ExportToWord();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我附上了一张示例图片,您可以在其中检查导出的 pdf 的 html。
请检查并告知我是否有任何问题。
i attached one sample image where you can check your exported pdf's html.
please check and let me know if any concern.