1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace LYFZ.WeixinServers.WeiXinAPP.Api
- {
- public class WxMessageControl
- {
- public static string TextMessageData(string ToUserName, string FromUserName, string Content)
- {
- string txt = @"<xml>
- <ToUserName><![CDATA[{0}]]></ToUserName>
- <FromUserName><![CDATA[{1}]]></FromUserName>
- <CreateTime>{2}</CreateTime>
- <MsgType><![CDATA[text]]></MsgType>
- <Content><![CDATA[{3}]]></Content>
- </xml>";
- txt = string.Format(txt, ToUserName, FromUserName, DateTime.Now.ToString("ddHHmmss"), Content);
- return txt;
- }
- }
- }
|