发送短信验证码及调用短信接口与C# 后台 post 发送
#region 调用短信接口 public ActionResult Mobile( string Tel) // 调用接口 { Random rm = new Random(); int i; string str = string .Empty; for ( int p = 0 ; p < 6 ; p++ ) { i = Convert.ToInt32(rm.NextDouble() * 10 ); str += i; } System.Web.HttpContext.Current.Session[ " Code " ] = str; // string stringSendResult = SendMobileCode(Tel, str); //方法一 string stringSendResult2 = Send(Tel, " 验证码是: " + str); return Json( true , JsonRequestBehavior.AllowGet); // 短信发送成功 } #endregion #region 方法一(可能有些问题,走不通的先试用方法二) public string SendMobileCode( string Mobile, string number) { if ( string .IsNullOrEmpty(Mobile)) return