try
{
ReportUtilities utilities = new ReportUtilities(user, "v201506", definition);
using (ReportResponse response = utilities.GetResponse())
{
response.Save(filePath);
}
}
catch (Exception ex)
{
throw new System.ApplicationException("Failed to download report.", ex);
}
Response.AddHeader("content-disposition", "attachment;filename=report.gzip");
Response.WriteFile(filePath);
Response.End();
}
Then i have a download of Report but i want the Example(CampaignID) in the html, how i can get XML of response with data that I requested?
Thanks.