Question:
plz tell the steps for crystal report in asp.net?
Answer:
It is used to register our application that we are created. To share our application in the webservice we have to register our application. Source: CoolInterview.com
Answered by: Halith Ibrahim | Date: 6/14/2009
| Contact Halith Ibrahim
using CrystalDecisions.CrystalReports.Engine; using CrystalDecisions.Shared;
ReportDocument rd = new ReportDocument(); rd.Load("Report.rpt"); rd.SetDataSource(Dataset1); //rptView is the crystal report viewer rptView.ReportSource = rd; Source: CoolInterview.com
Answered by: Azath | Date: 7/10/2009
| Contact Azath
First in the tool box reporting Add new item Crystal report As a blank report or according to ur needs Database expert (right click) create new connection oledb ADO provider database next next finish drag and drop the collumn as u want to add on the report and also add the classes using crystalDecisions.crystalreports.Engine; then programming according to u Source: CoolInterview.com
Answered by: navneet kumar jain | Date: 7/15/2009
| Contact navneet kumar jain
add a crystal report tool to form. fire query for data and store result in dataset. set properties of myreportdocument.setdatasource =ds(dataset). and reportsource to myreportdocument of cystal report. Report is ready. Source: CoolInterview.com
Answered by: pramod | Date: 8/21/2009
| Contact pramod
Step 1: Add crystal report form in your application . Step 2: it will show 3 options to create crystal report.Choose Using report wizard Step 3: select MS SQL server & connect with your Server. step 4: Select Data base & Table which you want to retrieve data Step 5: Select all fields for bind data Step 6 : click ok to finish now you can see the Crystal report view . then you can connect this with your program ... Source: CoolInterview.com
Answered by: Mega | Date: 9/4/2009
| Contact Mega
1. Create the .rpt file (from scratch) and set the necessary database connections using the Crystal Report Designer interface.
2. Place a CrystalReportViewer control from the toolbox on the .aspx page and set its properties to point to the .rpt file that we created in the previous step.
3. Call the databind method from your code behind page.
Source: CoolInterview.com
Answered by: Dharma | Date: 10/14/2009
| Contact Dharma
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|