I am facing an issue in the report in which my written xml is not bound into the report. The result is blank report. Any help? Links where i got the idea from:
https://gallery.technet.microsoft.com/scriptcenter/Dynamic-RDLC-Generator-6237aa44
I am facing an issue in the report in which my written xml is not bound into the report. The result is blank report. Any help? Links where i got the idea from:
https://gallery.technet.microsoft.com/scriptcenter/Dynamic-RDLC-Generator-6237aa44
It Worked!, it was something related to parameters!!
parameters[0] = new ReportParameter("FeeColumnVisibility", withFee.ToString()); System.Array.Resize(ref parameters, 4);
In which the Parameters are needed to declare whether i need some specific columns or not The WithFee is a boolean variable that is also something related to my work