水晶报表图片显示不出来?
运行水晶报表的时候
工具栏上的图片显示不出来!!
请问是什么原因啊??
[此贴子已经被作者于2007-9-14 17:51:03编辑过]
我用的是VS2005
在本地是可以正确的显示和打开报表!!
到了服务器上
客户端能打开,但是不能正常显示报表
报表工具栏上的图片根本现实不出来!!
程序如下:
protected void Page_Load(object sender, EventArgs e)
{
ReportDocument oRpt = new ReportDocument();
string path = Server.MapPath(".");
path = path + "\\GetPriceBaseInfo\\PriceBase_report.rpt";
// 加载已经做好的报表
oRpt.Load(path);
RtViewer.ReportSource = oRpt;
}