如题目,需要做些什么。

解决方案 »

  1.   

     首先须要申请个短信接口,然后商家会提供API,照着文档做就OK了.
     http://www.stongnet.com/
     http://www.cpunc.com/messages.asp?subid=75
      

  2.   

    找SP商,他们的程序都有群发功能,也可以自己二次开发,他们都有DEMO
      

  3.   

    使用短信猫或使用web services接口
    循环发送
      

  4.   

    [DllImport("winmm.dll")]        public static extern uint mciSendString(string lpstrCommand,        string lpstrReturnString, uint uReturnLength, uint hWndCallback);
            public Form1()
            {
                InitializeComponent();
            }
            private void Form1_Load(object sender, EventArgs e)
            {
               // AxWMPLib.AxWindowsMediaPlayer awm = new AxWMPLib.AxWindowsMediaPlayer();
                axWindowsMediaPlayer1.settings.autoStart = true;
                axWindowsMediaPlayer1.settings.volume = 40;
            //绝对路径   
          // string path ="F:/player/player/bin/Debug/sound/一万个理由.mp3";
          //axWindowsMediaPlayer1.URL = path;
           //相对路径:
                this.axWindowsMediaPlayer1.URL = Application.StartupPath + "\\sound\\一万个理由.mp3";
                    }