WxMessageControl.cs 829 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace LYFZ.WeixinServers.WeiXinAPP.Api
  6. {
  7. public class WxMessageControl
  8. {
  9. public static string TextMessageData(string ToUserName, string FromUserName, string Content)
  10. {
  11. string txt = @"<xml>
  12. <ToUserName><![CDATA[{0}]]></ToUserName>
  13. <FromUserName><![CDATA[{1}]]></FromUserName>
  14. <CreateTime>{2}</CreateTime>
  15. <MsgType><![CDATA[text]]></MsgType>
  16. <Content><![CDATA[{3}]]></Content>
  17. </xml>";
  18. txt = string.Format(txt, ToUserName, FromUserName, DateTime.Now.ToString("ddHHmmss"), Content);
  19. return txt;
  20. }
  21. }
  22. }