Hi,
Telerik, I am in greate trouble, I have faced this problem so many times.
During last 5 days, it is coming so often, and every time I have no other option but to create the report again.
I have attatched the detailed image of error, please check this and suggest how we can solve this problem.
We are using "Reporting Q1 2010" version.
Also please tell us how we can bind the sub report, here I am posting my code but this is not doing any thing,
Infact during this process I have been facing the reported error this time. I have created this report almost 6 times
and every time during the sub report binding I came up with this error.
<Format Code Block>
private void AsapBillingTransactions_NeedDataSource(object sender, EventArgs e)
{
DataSet ds_SubReport = new DataSet();
command = new SqlCommand();
command.CommandType = CommandType.StoredProcedure;
command.Connection = connection;
command.CommandText = "sp_ASAPBilling1";
command.Parameters.Add(new SqlParameter("@OrgID", OrgID));
command.Parameters.Add(new SqlParameter("@FromDate", FromDate));
command.Parameters.Add(new SqlParameter("@ToDate", ToDate));
adapter = new SqlDataAdapter(command);
adapter.Fill(ds_SubReport);
this.subReport1.ReportSource.DataSource = ds_SubReport;
}
<Format Code Block>
Certainly found more errors.
One of reports in my project is working well, I am able to preview the report in my reporting project, but creating dll of reports project, when I use it with my web application, it is giving error, I have also attatched the image with error named"ConnectionStringError".