日韩亚洲欧美一区二区三区,日本免费暖暖在线小视频,翘臀美女131,国产午夜av一在线观看

ASP.NET(C#)

ASP.NET(C#)代碼示例

//接口類型:達(dá)信通語音通知接口。
//賬戶注冊:請通過該地址開通賬戶http://sms.wx96.com/register.html
//注意事項(xiàng):
//(1)調(diào)試期間,請仔細(xì)閱讀接口文檔;
//(2)請使用APIID(查看APIID請登錄用戶中心->語音通知->帳戶及簽名設(shè)置->APIID)及 APIkey來調(diào)用接口;
//(3)該代碼僅供接入達(dá)信通語音通知接口參考使用,客戶可根據(jù)實(shí)際需要自行編寫;

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.IO;
using System.Net;
using System.Text;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class Post : System.Web.UI.Page
{
    public static string PostUrl = ConfigurationManager.AppSettings["WebReference.Service.PostUrl"];
    protected void Page_Load(object sender, EventArgs e)
    {
        string account = "用戶名";//用戶名是登錄用戶中心->語音通知->帳戶參數(shù)設(shè)置->APIID
        string password = "密碼";//查看密碼請登錄用戶中心->語音通知->帳戶參數(shù)設(shè)置->APIKEY
        string mobile = "136xxxxxxxx";//手機(jī)號碼
        string content = "您的訂單號是:0648。已由順風(fēng)快遞發(fā)出,請注意查收。";
		string postStrTpl = "account={0}&password={1}&mobile={2}&content={3}";

        UTF8Encoding encoding = new UTF8Encoding();
        byte[] postData = encoding.GetBytes(string.Format(postStrTpl, account, password, mobile, content));

        HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(PostUrl);
        myRequest.Method = "POST";
        myRequest.ContentType = "application/x-www-form-urlencoded";
        myRequest.ContentLength = postData.Length;

        Stream newStream = myRequest.GetRequestStream();
        // Send the data.
        newStream.Write(postData, 0, postData.Length);
        newStream.Flush();
        newStream.Close();

        HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
        if (myResponse.StatusCode == HttpStatusCode.OK)
        {
            StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.UTF8);

               string res = reader.ReadToEnd();
               //Response.Write(res);
               int len1 = res.IndexOf("");
               int len2 = res.IndexOf("");                string code=res.Substring((len2+6),(len1-len2-6));                Response.Write(code);                 int len3 = res.IndexOf("");                int len4 = res.IndexOf("");                string msg=res.Substring((len4+5),(len3-len4-5));                Response.Write(msg);                 Response.End();          }         else         {             //訪問失敗         }     } }  
在線咨詢
電話咨詢

服務(wù)熱線:

4008 808 898

服務(wù)熱線(工作時(shí)間):

4008 808 898

業(yè)務(wù)咨詢(非工作時(shí)間):

4008 808 898

售后咨詢(非工作時(shí)間):

4008 808 898

洮南市| 诏安县| 万州区| 佛教| 洪湖市| 石屏县| 玛沁县| 象山县| 普洱| 东平县| 祁门县| 手游| 昌宁县| 伊金霍洛旗| 敖汉旗| 和平区| 霍山县| 织金县| 奉贤区| 巴中市| 江阴市| 靖远县| 禹城市| 武乡县| 柘城县| 普宁市| 洪湖市| 巴东县| 晋江市| 昌宁县| 三江| 隆德县| 延安市| 甘德县| 富民县| 理塘县| 桃源县| 邮箱| 垦利县| 海盐县| 外汇|