ASP.NET Report Load and doesn't display
brice3434
France
Hello everyone,
I tried FastReport, created a .frx file with de designer and tried to display it on my ASP WebPage.
Here is my code :
But when I go to my page, the report keeps loading and doesn't display :
May someone had the same problem and succeeded to display it ?
I tried FastReport, created a .frx file with de designer and tried to display it on my ASP WebPage.
Here is my code :
public partial class DemoImpression:System.Web.UI.Page
    {
        protected void Page_Load(object sender,EventArgs e)
        {
            if(!IsPostBack)
            {
                WebReport1.Prepare();
            }
        }
        protected void WebReport1_StartReport(object sender,EventArgs e)
        {
            string fileName=@"~/Report/TestFacture.frx";
            WebReport1.Report.LoadPrepared(fileName);
            WebReport1.ReportDone=true;
        }
    }
But when I go to my page, the report keeps loading and doesn't display :
May someone had the same problem and succeeded to display it ?