我在服务器上运行RADGrid Control时出错,但是当我将数据导出为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();
}
答案 0 :(得分:0)
我附上了一张示例图片,您可以在其中检查导出的pdf的html。 请检查并告诉我是否有任何疑虑。