Hi guyz...here is a sample code to send SMS (to the world)...please (any junior/senior) poster update me with you feedbacks...
[code = VB.NET]
[inline code]
private void Send_Click(object sender, System.EventArgs e)
{
try
{
SmsTest.com.webservicex.www.SendSMSWorld smsWorld =
new SmsTest.com.webservicex.www.SendSMSWorld();
smsWorld.sendSMS(txtEmailId.Text.Trim(),
txtCountryCode.Text.Trim(),
txtMobileNo.Text.Trim(), txtMessage.Text);
lblMessage.Visible = true;
lblMessage.Text="Message Send Succesfully";
}
catch(Exception ex)
{
lblMessage.Visible = true;
lblMessage.Text="Error in Sending message"+ex.ToString();
}
}
[/inlinecode]