Crystal报表导出功能无法使用iframe

时间:2016-02-26 05:33:05

标签: c# .net asp.net-mvc crystal-reports crystal-reports-xi

我在ifrmae中展示了水晶报告。 但我无法导出为pdf / excel或任何格式的任何格式。

2 个答案:

答案 0 :(得分:1)

是的,你有!

protected void Page_Init(object sender, EventArgs e)
{
 ..fill the report..
}

但不要忘记关闭它(这将避免报告计数器达到限制!)

protected void Page_Unload(object sender, EventArgs e)
{
 reportDocument.Close();
}

答案 1 :(得分:0)

我在这里得到了这个问题, 当您想要以任何格式导出报告时,您需要在Pageinit中调用该报告填充的代码/功能,例如 -  protected void Page_Init(object sender,EventArgs e)         { //您的代码或函数调用 } 那肯定是有效的!!! 问候, 拉姆。