如何使用RADGrid Control从Asp.net 2010中的Excel或PDF或Word获取数据?

时间:2011-10-15 07:46:34

标签: c# asp.net sql-server telerik

我在服务器上运行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();
}

1 个答案:

答案 0 :(得分:0)

我附上了一张示例图片,您可以在其中检查导出的pdf的html。 请检查并告诉我是否有任何疑虑。 enter image description here