我在互联网上搜索这个问题好几天了,但似乎没人在讨论过这个问题。我正在使用SmsClient.dll
使用way2sms服务发送消息,但是当我发送命令sms.send(ID, password, smsBody, tonumber);
时,执行它会返回一个始终为2的值,并且互联网中的示例表示互联网连接存在问题,但这里很有趣事情。我的网络连接工作正常。
以下是我的几个问题:
这是我的代码:
private string SendSMSFromWAY2SMS(string tonumber, string ID, String password, string smsBody)
{
string result = null;
SendSms sms = new SendSms();
string status = sms.send(ID, password, smsBody, tonumber);
if (status == "1")
{
result = "Sending Sms ";
}
else if (status == "2")
{
result = "Please Check Your Internet Connection";
}
else
{
result="Invalid Password or User Name";
}
result = "Your Daily Sms Limit Was Completed \nso Please Try with Another Account";
return result;
}
请帮助!!!