1 ///
2 /// 回复文本
3 ///
4 ///
5 ///
6 ///
7 ///
8 public string ReceivedText(string FromUserName, string ToUserName, string Content)
9 {
10
11 string textpl = string.Empty;
12 textpl = "" +
13 "" + FromUserName + "]]>" +
14 "" + ToUserName + "]]>" +
15 "" + ConvertDateTimeInt(DateTime.Now) + "" +
16 "" +
17 "" + Content + "]]>" +
18 "0" +
19 "";
20
21 return textpl;
22 }