Could you help me to solve this webservice program.
i didn't get any error, but the message not getting in specified number.
is it a problem of webservice ?
try
{
net.webservicex.www.SendSMS smsIndia = new net.webservicex.www.SendSMS();
net.webservicex.www.SMSResult smsre = new net.webservicex.www.SMSResult();
smsre= smsIndia.SendSMSToIndia("+91"+TextBox1.Text, "test@gmail.com", "Haiiii");
Label1.Text = smsre.Status; //"Message Send Succesfully";
}
catch (Exception ex)
{
Label1.Text = "Error in Sending message" + ex.ToString();
}