Hi,
I am calling an ASP page from a NET application,and it seems that the hebrew
characters are being lost
here is my code:
string url....
string strPost....
HttpWebRequest objRequest = (HttpWebRequest )WebRequest.Cre ate(url);
objRequest.Meth od = "POST";
byte[] data = Encoding.UTF8.G etBytes(strPost );
objRequest.Cont entLength = data.Length;
objRequest.Send Chunked=true;
objRequest.Tran sferEncoding="U TF-8"; //Added this lately to check,but still
does not work
objRequest.Cont entType = "applicatio n/x-www-form-urlencoded";
try
{
System.IO.Strea m stream=objReque st.GetRequestSt ream();
stream.Write(da ta,0,data.Lengt h);
stream.Close();
}
:
:
Thanks in advance/
Comment