Hi, I have the following problem with the Report Viewer for WPF control . I read the HTML code returned by 'Render' metod next i want to set this code to the reportviewewr control , How can I do it ??
This metdo that i use to get HTML code:
Dictionary<string, object> lParameters = new Dictionary<string, object>();
lParameters.Add("IDKON", 101);
var lResult = ReportServiceContext.I.Render("HTML", lRaporty[0].FullName, null, lParameters);
if (lResult.Error == null)
{
sring str = System.Text.Encoding.Default.GetString(lResult.DocumentBytes);
}
Thank for help.
Gregor
This metdo that i use to get HTML code:
Dictionary<string, object> lParameters = new Dictionary<string, object>();
lParameters.Add("IDKON", 101);
var lResult = ReportServiceContext.I.Render("HTML", lRaporty[0].FullName, null, lParameters);
if (lResult.Error == null)
{
sring str = System.Text.Encoding.Default.GetString(lResult.DocumentBytes);
}
Thank for help.
Gregor