Hello Everyone,
I want to generate a report using reportviewer, I have tried every way to generate using dynamically to retrieving dataset and transferring it into datatable and also ilist, but nothing helped me.Still the reportviewer is giving a blank page with only the
header portion visible.Can you help me resolve if anything is missing in this piece of code. This is the page containing the reportviewer.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.Reporting;
using System.Data.SqlClient;
using Microsoft.Reporting.WinForms;
namespace testcrystal
{
public class temp
{
public string fnm,lnm;
public int sal;
public temp(string fn,string ln,int sl)
{
fnm = fn;
lnm = ln; ...
Go to the complete details ...