hi,
1-Is it possible to load report from Assemblly (web applcation) ?
2-Is it possible to save report resoult with out preview (web applcation).
If possible, can you write sample code C# vs 2008 .
By Using Our AJAX code, we want to create several reports and then stored on the server to be downloaded Later.
thank you .
load Report form Assemblly .
load Report form Assemblly .
Hello,
.....................................
Thank you.
Yes, its possible. Please use following code:1-Is it possible to load report from Assemblly (web applcation) ?
Code: Select all
StiReport report = StiReport.GetReportFromAssembly(assembly);
Yes, its possible. For example with this code you can store and restore rendered report to string which you can use as you want:2-Is it possible to save report resoult with out preview (web applcation).
Code: Select all
StiReport report = new StiReport();
report.Load("1.mrt");
report.Render(false);
string str = report.SaveDocumentToString();
Code: Select all
StiReport report = new StiReport();
report.LoadDocumentFromString(str);
Thank you.
load Report form Assemblly .
Thank you very much for the quick response.