i try to use Crystal report viewer to show crystal report in my website. But it not show anything. Why ? Please Help me please.
this is my code (Code behide)
if (!string.IsNullOrEmpty(Request.QueryString["AppRowId"]))
{
string xAppRowId = Request.QueryString["AppRowId"];
ReportDocument report = new ReportDocument();
ParameterValues p1s = new ParameterValues();
ParameterDiscreteValue Pval = new ParameterDiscreteValue();
Pval.Value = xAppRowId;
p1s.Add(Pval);
// report.FileName = Server.MapPath(@"~/CrystalReport/CrystalReportAppForm.rpt");
report.PrintOptions.PaperSize = CrystalDecisions.Shared.PaperSize.PaperA4;
report.Load(Server.MapPath(@"~/CrystalReport/CrystalReportAppForm.rpt"));
//// ReportViewer1.DataBinding = report;
report.DataDefinition.ParameterFields["AppRowId"].ApplyCurrentValues(p1s);
CrystalReportViewer1.ReportSource = report;
}
this is my crystal report viewer in aspx
<CR:CrystalReportViewer ID="CrystalReportViewer1" PrintMode="ActiveX" EnableDatabaseLogonPrompt="False" EnableParameterPrompt="False" ToolPanelView="None" runat="server" AutoDataBind="true" />
And this is my assembly in webconfig file
<add assembly="CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.ReportSource, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
<add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
My .Net framework is 4, i'm spend a lot of time for this. Please help me to solve this problem. Thank you so much