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

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -