hi,
My problem is i am getting error "This stream does not support seek operations" at System.Net.ConnectStream.get_Length().
i am working on HttpWebRequest object .
code is

strPost="Some String";
HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(Url);
objRequest.Method = "POST";
objRequest.ContentLength = strPost.Length;
objRequest.ContentType = "application/x-www-form-urlencoded";
objRequest.Credentials = new NetworkCredential(Username,Password);
Stream strRequest=objRequest.GetRequestStream();
Can anybody has idea on this
thanks