I need to htmlencode some report data displayed in table format using the Reporting Application. Aside from modifying the base controls used for the report, how else can I do this?
Try doing it in the query...
(SELECT FIELD_NAME AS [text()] FOR XML PATH('')) AS FIELD_NAME_HtmlENcoded
Also found you can use the macro when you place the table in the report
%%report.code.name|(htmlencode)true%%
Bad part is you can't view it in the Admin interface with that option.
Please, sign in to be able to submit a new answer.