html character conversion

  • Thread starter Thread starter Frank
  • Start date Start date
F

Frank

Hello,
is there a standard method in VB.NET to convert ascii to html character
types? For instance the  to the numeric & # 194; or symbol & Acirc;
representation. And also back.
Thanx
Frank
 
Hello,
is there a standard method in VB.NET to convert ascii to html character
types? For instance the  to the numeric & # 194; or symbol & Acirc;
representation. And also back.


Yup, Server.HTMLEncode.
 
* "Frank said:
is there a standard method in VB.NET to convert ascii to html character
types? For instance the  to the numeric & # 194; or symbol & Acirc;
representation. And also back.

Text -> HTML: 'HttpUtility.HtmlEncode'.
 
Back
Top