Ok so I've been slowly working this metadata into my code. I have one problem.
When I save a piece of string data to a report and then save that report to an MRT file everything works fine except when I load that MRT file back in.
The meta data seems to be encoded somehow. For Example:
Code: Select all
TheReport.MetaData["Description"] = "This is a report description";
After the report template is loaded back in and I read that MetaData it looks like the following:
Code: Select all
This_x0020_is_x0020_a_x0020_report_x0020_description
Is there something I need to do to decode this data. I would like it to actually come back the way I put it in, if that is possible.