Test to check Util.FormatPhrase versus Report.WritePhrase
<%[
Report.Write(Util.FormatPhrase("{0}", "This line was produced by Report.Write Util.FormatPhrase(...) and contains the following characters that should be html encoded > < & "));
Report.WriteLn(Report.TagBr);
Report.WritePhrase("{0}", "This line was produced by Report.WritePhrase(...) and contains the following characters that should be html encoded > < & ");
Report.WriteLn(Report.TagBr);
Report.WriteText("View page source in browser to check HTML encoding");
]%>