I published the web aplication with a telerik application, I copied all dlls
into bin folder but when it rendering, the page are blank.
Have more files or configurations in the server?
Thanks,
Jose
2 Answers, 1 is accepted
0
Chavdar
Telerik team
answered on 08 Jul 2008, 10:01 AM
Hi Jose Ferreira Lima Filho,
Please verify that your report is populated correctly with data. If you are filling the data set in the report's constructor using the following pattern, you can remove the try...catch block in order to check if there is any exception.
try
{
this.DataSetTableAdapter1.Fill(this.DataSet.DataSetTable);
}
catch (System.Exception ex)
{
// An error has occurred while filling the data set. Please check the exception for more information.
System.Diagnostics.Debug.WriteLine(ex.Message);
}
In case the problem is not with the data please open a support ticket and send us a screenshot and the web page with the report viewer.