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 < instead of < , > instead of >
how can solve this?
these (< , >) standard html character entities. can use html decoder "normal" character.
see how can decode html characters in c#? fore more details.
Comments
Post a Comment