我正在尝试将mvc3应用程序中的短信文本发送到短信网关a但我的应用程序中出现错误
“非静态字段,方法或者需要对象引用 property'UrWeb.SMS.send(string)'“
参考控制器
SMS.send(ViewBag.Message);
SMS.cs
private const string _user = "XXX";
private const string _pass = "XXX";
private const string _url = "http://sms.com/api/http.php";
private const string Phone="000000000";
public SMS(string _user, string _pass, string _url)
{
user = _user;
pass = _pass;
url = _url;
}
public string send(string Phone, string Message)
{
string strData = SMSGData(Phone, Phone, Message);
return SendSms(url, strData);
}
.........
对此方向的任何帮助都将受到高度赞赏