茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

    微信公眾平臺開發(fā)之發(fā)送文本消息.Net代碼解析
    來源:易賢網(wǎng) 閱讀:1345 次 日期:2016-08-06 13:14:24
    溫馨提示:易賢網(wǎng)小編為您整理了“微信公眾平臺開發(fā)之發(fā)送文本消息.Net代碼解析”,方便廣大網(wǎng)友查閱!

    .Net實現(xiàn)微信公共服務(wù)平臺開發(fā)中的發(fā)送文本消息功能,具體內(nèi)容如下

    首先建立一個微信消息類。 

    class wxmessage 

     public string FromUserName { get; set; } 

     public string ToUserName { get; set; } 

     public string MsgType { get; set; } 

     public string EventName { get; set; } 

     public string Content { get; set; }

     public string EventKey { get; set; } 

    后臺代碼如下: 

    protected void Page_Load(object sender, EventArgs e)

      {

       wxmessage wx = GetWxMessage();

       string res = "";

       if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.Trim() == "subscribe")

       {//剛關(guān)注時的時間,用于歡迎詞

        string content = "";

        content = "/:rose歡迎北京永杰友信科技有限公司/:rose\n直接回復“你好”";

        res = sendTextMessage(wx, content);

       }

       else

       {

        if (wx.MsgType == "text" && wx.Content == "你好")

        {

         res = sendTextMessage(wx, "你好,歡迎使用北京永杰友信科技有限公司公共微信平臺!");

        }

        else

        {

         res = sendTextMessage(wx, "你好,未能識別消息!");

        }

       }

       Response.Write(res);

      }

     private wxmessage GetWxMessage()

      {

       wxmessage wx = new wxmessage();

       StreamReader str = new StreamReader(Request.InputStream, System.Text.Encoding.UTF8);

       XmlDocument xml = new XmlDocument();

       xml.Load(str);

       wx.ToUserName = xml.SelectSingleNode("xml").SelectSingleNode("ToUserName").InnerText;

       wx.FromUserName = xml.SelectSingleNode("xml").SelectSingleNode("FromUserName").InnerText;

       wx.MsgType = xml.SelectSingleNode("xml").SelectSingleNode("MsgType").InnerText;

       if (wx.MsgType.Trim() == "text")

       {

        wx.Content = xml.SelectSingleNode("xml").SelectSingleNode("Content").InnerText;

       }

       if (wx.MsgType.Trim() == "event")

       {

        wx.EventName = xml.SelectSingleNode("xml").SelectSingleNode("Event").InnerText;

       }

       return wx;

      }

    /// 

      /// 發(fā)送文字消息 

      /// 

      /// 獲取的收發(fā)者信息 

      /// 內(nèi)容 

      /// 

      private string sendTextMessage(wxmessage wx, string content)

      {

       string res = string.Format(@" ",

        wx.FromUserName, wx.ToUserName, DateTime.Now, content);

       return res;

      }

    以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助

    更多信息請查看網(wǎng)絡(luò)編程

    2026上岸·考公考編培訓報班

    • 報班類型
    • 姓名
    • 手機號
    • 驗證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
    工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)