Image is not displaying
-
Hi, I can show my report (CR of VS 2005) well in my development machine (ASP.Net with C#). But after deploying in my sever, the toolbar images of the report is not displaying well. It show as red color (X) mark. I googled and tried in different ways. But I could not solve it. I tried in four ways so far such as by pasting aspnet_client in my project folder, creating another virtual diretry in my prj and linking with aspnet_client, adding CR of VS2005 in pre-requisitis while building and finaly building with Merge module. But I never got help from the above mentioned 4 ways. Anybody can help me? I'm being struck in this for more than 5 days. Note: Report is generating well with toolbar images in my development machine in both of running the application and deploying the application.
Balasubramanian K.
-
Hi, I can show my report (CR of VS 2005) well in my development machine (ASP.Net with C#). But after deploying in my sever, the toolbar images of the report is not displaying well. It show as red color (X) mark. I googled and tried in different ways. But I could not solve it. I tried in four ways so far such as by pasting aspnet_client in my project folder, creating another virtual diretry in my prj and linking with aspnet_client, adding CR of VS2005 in pre-requisitis while building and finaly building with Merge module. But I never got help from the above mentioned 4 ways. Anybody can help me? I'm being struck in this for more than 5 days. Note: Report is generating well with toolbar images in my development machine in both of running the application and deploying the application.
Balasubramanian K.
-
can you paster code of the report (CR)? it's must request one data source, and (CR).rpt files must in one directory.
In my report, I am using command. I've written some queries over there itself.
rptDocument = new ReportDocument(); rptDocument.Load(Server.MapPath("Reports/rptPendingCredit.rpt")); crvPendingCredit.ReportSource = rptDocument; crvPendingCredit.DataBind();
This followng is my code of my Crystal Report Viewer control
<CR:CrystalReportViewer ID="crvPendingCredit" runat="server" AutoDataBind="true" />
Previously I added some more in my control. But I removed again
<CR:CrystalReportViewer ID="crvPendingCredit" runat="server" AutoDataBind="true" HasCrystalLogo="False" EnableDatabaseLogonPrompt="false" EnableParameterPrompt="false"
GroupTreeImagesFolderUrl="/aspnet_client/system_web/2_0_50727/CrystalReportWebFormViewer3/images/tree/"
ToolbarImagesFolderUrl="/aspnet_client/system_web/2_0_50727/CrystalReportWebFormViewer3/images/toolbar/" />Balasubramanian K.