我正在使用Way2SMS api在visual studio 2010中使用c#从我的Windows窗体应用程序发送短信。这是我的代码:
SendSms sms = new SendSms();
string status = sms.send(textBoxId.Text, textBoxPassword.Text, richTextBoxText.Text, textBoxSendTo.Text);
if (status == "1")
{
MessageBox.Show("Message Sent Successfully");
}
else if (status == "2")
{
MessageBox.Show("No Internet Connection");
}
else
{
MessageBox.Show("Invalid Login Or No Internet Connection " + status);
}
我总是得到第二或第三个错误情况,即没有互联网连接或无效登录。
我是否需要授予特权,以便应用程序可以访问互联网。请注意我已关闭防火墙。我使用的是Windows 8和Visual Studio 2010。
使用:http://www.c-sharpcorner.com/UploadFile/b8d90a/send-sms-using-C-Sharp-net/