c# - WebClient() downloadstring returns HTML with strange symbols -


i using

webclient c = new webclient(); c.encoding = encoding.utf8; var vlogin = c.downloadstring("http://www.www"); 

and returns html, appears &lt; instead of < , &gt; instead of >

how can solve this?

these (&lt; , &gt;) standard html character entities. can use html decoder "normal" character.

see how can decode html characters in c#? fore more details.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -