HTML in un campo di testo
Per visualizzare in un report un campo in
cui vi è del codice HTML come fosse testo formattato si può aggiungere questa
funzione nel codice al Tab Code del Report:
Public function
FormatHtml(byval s as string)
return new
System.Text.RegularExpressions.Regex("<[^>]*>").Replace(s, "")
End Function
e la possiamo richiamare così:
= Code.FormatHtml(Fields!Description.Value)