Save report

Stimulsoft Reports.NET discussion
Post Reply
ytheaudin
Posts: 4
Joined: Sun Jul 12, 2009 5:05 pm
Location: Fr

Save report

Post by ytheaudin »

Hi

is it possible to save the report directly into the database,
with a standard Save command to Db


best regards:shame:
Brendan
Posts: 309
Joined: Sun Jul 16, 2006 12:42 pm
Location: Ireland

Save report

Post by Brendan »

You can save a report to a string and then save that string to your DB.

Code: Select all

StiReport report = new StiReport();
string reportString = report.SaveToString();
Post Reply