Z
z. f.
using HttpWebRequest to make HTTP request t web server and get resulting
HTML in the response, when the response includes hebrew characters (not
unicode) these characters are moved away after
StreamReader reader = new StreamReader ( response.GetResponseStream() );
strHTML = reader.ReadToEnd();
is there anyway to save all the data came with the response using this
object?
TIA.
HTML in the response, when the response includes hebrew characters (not
unicode) these characters are moved away after
StreamReader reader = new StreamReader ( response.GetResponseStream() );
strHTML = reader.ReadToEnd();
is there anyway to save all the data came with the response using this
object?
TIA.