微信公共服务平台开发(.Net 的实现)3-------发送文本消息

首先建立一个微信消息类。

[csharp] view plain copy 在CODE上查看代码片 派生到我的代码片
  1. class wxmessage    
  2.   {    
  3.       public string FromUserName { getset; }    
  4.       public string ToUserName { getset; }    
  5.        public string MsgType { getset; }    
  6.        public string EventName { getset; }    
  7.        public string Content { getset; }  
  8.        public string EventKey { getset; }   
  9.    }  


后台代码如下:


[csharp] view plain copy 在CODE上查看代码片 派生到我的代码片
  1. protected void Page_Load(object sender, EventArgs e)  
  2.      {  
  3.          wxmessage wx = GetWxMessage();  
  4.          string res = "";  
  5.   
  6.          if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.Trim() == "subscribe")  
  7.          {//刚关注时的时间,用于欢迎词  
  8.              string content = "";  
  9.              content = "/:rose欢迎北京永杰友信科技有限公司/:rose\n直接回复“你好”";  
  10.              res = sendTextMessage(wx, content);  
  11.          }  
  12.          else  
  13.          {  
  14.              if (wx.MsgType == "text" && wx.Content == "你好")  
  15.              {  
  16.                  res = sendTextMessage(wx, "你好,欢迎使用北京永杰友信科技有限公司公共微信平台!");  
  17.              }  
  18.              else  
  19.              {  
  20.                  res = sendTextMessage(wx, "你好,未能识别消息!");  
  21.              }  
  22.          }  
  23.   
  24.          Response.Write(res);  
  25.      }  
  26.   
  27.  private wxmessage GetWxMessage()  
  28.      {  
  29.          wxmessage wx = new wxmessage();  
  30.          StreamReader str = new StreamReader(Request.InputStream, System.Text.Encoding.UTF8);  
  31.          XmlDocument xml = new XmlDocument();  
  32.          xml.Load(str);  
  33.          wx.ToUserName = xml.SelectSingleNode("xml").SelectSingleNode("ToUserName").InnerText;  
  34.          wx.FromUserName = xml.SelectSingleNode("xml").SelectSingleNode("FromUserName").InnerText;  
  35.          wx.MsgType = xml.SelectSingleNode("xml").SelectSingleNode("MsgType").InnerText;  
  36.          if (wx.MsgType.Trim() == "text")  
  37.          {  
  38.              wx.Content = xml.SelectSingleNode("xml").SelectSingleNode("Content").InnerText;  
  39.          }  
  40.          if (wx.MsgType.Trim() == "event")  
  41.          {  
  42.              wx.EventName = xml.SelectSingleNode("xml").SelectSingleNode("Event").InnerText;  
  43.          }  
  44.   
  45.            
  46.          return wx;  
  47.      }  
  48.   
  49. /// <summary>    
  50.      /// 发送文字消息    
  51.      /// </summary>    
  52.      /// <param name="wx">获取的收发者信息    
  53.      /// <param name="content">内容    
  54.      /// <returns></returns>    
  55.      private string sendTextMessage(wxmessage wx, string content)  
  56.      {  
  57.          string res = string.Format(@" ",  
  58.              wx.FromUserName, wx.ToUserName, DateTime.Now, content);  
  59.          return res;  
  60.      } 

  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值