9 references to FormatPlainTextAsHtml
System.Web (9)
ErrorFormatter.cs (5)
878return HttpUtility.FormatPlainTextAsHtml(msg); 907string errorMessage = HttpUtility.FormatPlainTextAsHtml(_initialException.Message); 986msg = HttpUtility.FormatPlainTextAsHtml(msg); 1813_message = HttpUtility.FormatPlainTextAsHtml(message); 1860_message = HttpUtility.FormatPlainTextAsHtml(e.BareMessage);
Handlers\TraceHandler.cs (4)
464tcell = AddCell(trow, HttpUtility.FormatPlainTextAsHtml((string) datarow[SR.Trace_Category])); 467StringBuilder message = new StringBuilder(HttpUtility.FormatPlainTextAsHtml((string) datarow[SR.Trace_Message])); 472message.Append("<br>" + HttpUtility.FormatPlainTextAsHtml((string) errormessage)); 474message.Append("<br>" + HttpUtility.FormatPlainTextAsHtml((string) errorstack));