Hi
I'm new in Webform with Crystal Report. After a long goggling I able to build a Crystal report in web form. But it not displaying any thing. Here I will describe what I did.
1. Download "CRforVS_13_0_5.exe" and installed.
2. Create a .rpt file in my ASP.NET project.
3. Set the database fields
http://storage.workupload.com/image/A2zM5fqP
4. Below is my code to display the report
C# Code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.Odbc;
using System.Data.SqlClient;
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;
using System.Data;
namespace CR_Eg1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sende ...
Go to the complete details ...