我正在使用 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/