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 = @" {2} "; txt = string.Format(txt, ToUserName, FromUserName, DateTime.Now.ToString("ddHHmmss"), Content); return txt; } } }