Using HTML entities in XML Literals (Avner Aharoni)

VBTeam

One of the common use-cases of XML literals is creating HTML. However, HTML entities cannot be used in XML literals since LINQ to XML directly supports only the Data type definitions (DTD) defined in the XML 1.0 spec. You can read more about it here.

The workaround is to use the Unicode representation of the entity, although it’s not as readable as the HTML entities, the output is the same.

Here are two examples of HTML entities from the XHTML spec :

  Entity

  Unicode

   

   

  ©

  ©

And here is a small test program to show you can substitute the HTML entity with the Unicode representation:

  Dim html = <p>My Name Is Avner, © 2010 Microsoft </p>
   html.Save("test.html")
   Process.Start("test.html")

The output looks like this:

clip_image002

0 comments

Leave a comment

Feedback usabilla icon