Hi,
I am sending sms to my mobile number i will send the htprequest and get the response.
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
// Read the response
using (StreamReader srResponse = newStreamReader(response.GetResponseStream()))
{
responseMessage = srResponse.ReadToEnd();
}
}
if (responseMessage.Contains(SuccessMessage))
{
UpdateDeliveryDetails(singleMobile, message);
}
my sucess message is="Your message is successfully sent to"
response message also should be same as my sucess messgae
but i am getting some string in that like '\r\n\r\n\r\n"
and if check through i am getting erroe like "this stream does not support seek operations"