S
SevDer
The code below makes this error.
StreamReader myReader = new
StreamReader(myWebResponse.GetResponseStream(),System.Text.Encoding.GetEncoding("iso-8859-9"));
if I use
StreamReader myReader = new StreamReader(myWebResponse.GetResponseStream());
then I don't have any problems, but this time I cannot get the special
characters.
How can I fix this or how can I get the special characters without any loss?
Thanks in advance
SevDer
http://www.sevder.com
StreamReader myReader = new
StreamReader(myWebResponse.GetResponseStream(),System.Text.Encoding.GetEncoding("iso-8859-9"));
if I use
StreamReader myReader = new StreamReader(myWebResponse.GetResponseStream());
then I don't have any problems, but this time I cannot get the special
characters.
How can I fix this or how can I get the special characters without any loss?
Thanks in advance
SevDer
http://www.sevder.com