Any one can help me how to send Message www.Way2SMS.com using C# Window Application.
I'm trying no. of times . My code is run successfully but message is not send on destination mobile no. or i had checked on www.Way2SMS.com site SentSMS but not sent Messages .
so i need help for sending SMS using My app .
private void btn_SendMessage_Click(object sender, EventArgs e)
{
try
{
send("8888781552", "pravin11", txt_RecieverMobileNo.Text, txt_MessageBody.Text);
MessageBox.Show("message send successfully......");
}
catch
{
MessageBox.Show("Error Occured!!!");
}
}
public void send(string uid, string password, string message, string no)
{
// http://site21.way2sms.com/ebrdg.action?id=
// http://wwwd.way2sms.com//FirstServletsms?custid=
HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create("http://site21.way2sms.com/ebrdg.action?id=" + uid + "&pwd=" + password + "&msg=" + message + "&phone=" + no + " ");
HttpWebResponse myResp = (HttpWebResponse)myReq.GetResponse();
System.IO.StreamReader respStreamReader = new System.IO.StreamReader(myResp.GetResponseStream());
string responseString = respStreamReader.ReadToEnd();
respStreamReader.Close();
myResp.Close();
}
}so Rply any one......