General discussion

  • Creator
    Topic
  • #2289558

    Accessing Crystal Report in ASP.NET

    Locked

    by ombhutswaha ·

    How will I access the crystal report (already designed) in ASP.NET without using ReportDocument ?

All Comments

  • Author
    Replies
    • #2708234

      Reply To: Accessing Crystal Report in ASP.NET

      by balramrv ·

      In reply to Accessing Crystal Report in ASP.NET

      Drag and drop crystal report viewer to ur designer page and in the page load event set the following information:

      CrystalReportViewer1.ReportSource = “Path Of the Report”
      CrystalReportViewer1.LogOnInfo.Item
      (0).ConnectionInfo.ServerName = “ServerName”
      CrystalReportViewer1.LogOnInfo.Item
      (0).ConnectionInfo.DataBaseName= “DataBaseName”
      CrystalReportViewer1.LogOnInfo.Item
      (0).ConnectionInfo.UerID = “UserID”
      CrystalReportViewer1.LogOnInfo.Item
      (0).ConnectionInfo.password = “password”
      CrystalReportViewer1.DataBind()

Viewing 0 reply threads