
Signature
Ianier Munoz
http://www.chronotron.com
thanx, it worked,
even though it worked with
System.Text.Encoding.GetEncoding( "windows-1255")
because response.ContentEncoding returns empty string.
(i checked the HTTP response headers, and it does not include encoding
information, the browser looks in the HTML META tag for that, and that what
i gave the StreamReader class.)
> Try the following:
> StreamReader reader = new StreamReader(response.GetResponseStream(),
[quoted text clipped - 11 lines]
> >
> > TIA.
Feroze [MSFT] - 05 Apr 2004 03:58 GMT
If you look at my blog (given below), there is some code there which shows
you how to get the correct encodings. This will make sure that you dont lose
data.

Signature
feroze
http://weblogs.asp.net/feroze_daud
============
Remove "user" from the email address to reply to the author.
This posting is provided "AS IS" with no warranties, and confers no rights
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
> thanx, it worked,
> even though it worked with
[quoted text clipped - 19 lines]
> > >
> > > TIA.