1
all right? With a problem that is as follows: I recover the html of a legacy system and, I need to change this html pa then return to the browser with the new html. But when I recover this report the words with tones and accents, are with special characters, e.g.: Impress the. OBS.: This problem occurs when html is recovered, because the recovered page, executed without problems in production.
The charset used on this page is iso-8859-1. I use webrequest
var request = WebRequest.Create(url);
var response = request.GetResponse();
var dataStream = response.GetResponseStream();
var reader = new StreamReader(dataStream);
htmlFicha = reader.ReadToEnd();
I tried to replace it to replace it with the right word, but it didn’t work. How do I fix this problem? thank you very much.
Kra vlw...worked out!!!!! thank you very much
– Ricardo Soares
For nothing, I hug ;)
– Pedro Paulo