Необходимо слделать прогу которая запрашивает логин пароль и логинится на сайт заранее определенный:
делаю так:
HttpWebRequest myHttpWebRequest=(HttpWebRequest)WebRequest.Create("http://www.xxx.com/xxx.asp?request=login");
myHttpWebRequest.AllowWriteStreamBuffering=false;
string postData=@"\r\n\r\n"+"ulogin="+cfg.Account+"&upass="+cfg.Psw;
myHttpWebRequest.Method="POST";
ASCIIEncoding encodedData=new ASCIIEncoding();
byte[] byteArray=encodedData.GetBytes(postData);
myHttpWebRequest.ContentType="text/html";
myHttpWebRequest.ContentLength=byteArray.Length;
Stream newStream=myHttpWebRequest.GetRequestStream();
newStream.Write(byteArray,0,byteArray.Length);
newStream.Close();
HttpWebResponse myHttpWebResponse=(HttpWebResponse)myHttpWebRequest.GetResponse();
Stream stream = myHttpWebResponse.GetResponseStream();
StreamReader strRead = new StreamReader(stream);
String str = strRead.ReadToEnd();
stream.Close();
myHttpWebResponse.Close();
почему не работает?