Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. generating the crystal reports in webapplication asp.net 2.0

generating the crystal reports in webapplication asp.net 2.0

Scheduled Pinned Locked Moved ASP.NET
csharpasp-nethelp
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    praveenanand
    wrote on last edited by
    #1

    hi all, help me in generating the crystal reports in webapplication asp.net 2.0 using c#.net

    A 1 Reply Last reply
    0
    • P praveenanand

      hi all, help me in generating the crystal reports in webapplication asp.net 2.0 using c#.net

      A Offline
      A Offline
      Abolfazl Sheikhloo
      wrote on last edited by
      #2

      in first step you must create your report by WebSite >> Add New Item and select CrystalReport Object then Set Name Of Your report and press add. then create your report. if you passed this step in the second step must be load it by your codes. html codes:

      c# codes: public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { CrystalDecisions.CrystalReports.Engine.ReportDocument rptFile = new CrystalDecisions.CrystalReports.Engine.ReportDocument(); rptFile.Load(Server.MapPath("YourReportFile.rpt")); DataTable dt = new DataTable(); // this DataTable is Source Of your report that made by sqlquery or any data in table syntax rptFile.SetDataSource(dt); CrystalReportViewer1.ReportSource = rptFile; CrystalReportViewer1.DataBind(); } } We Can Do Anything, If We Want It

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups