在MVC3中发送短信

时间:2013-05-12 06:50:33

标签: asp.net-mvc-3 sms

我正在尝试将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);
    }
      .........

对此方向的任何帮助都将受到高度赞赏

1 个答案:

答案 0 :(得分:0)

制作方法static

 public static string send(string Phone, string Message)
    { 
   ....