随笔分类 -  Linq to json

摘要:c#代码 public class DateTimeUtil { /// /// 把json的时间格式还原-服务端 /// /// /// public static string Json2Com(string str) { str = Regex.Replace(str, @"\\/Date\((\d+)\)\\/", match => { DateTime dt = new DateTime(1970, ... 阅读全文
posted @ 2013-08-06 16:08 Bruce_yao 阅读(282) 评论(0) 推荐(0)
摘要:html 代码 订单号: 查询 后台代码using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.IO;using System.Tex... 阅读全文
posted @ 2013-07-22 11:44 Bruce_yao 阅读(1784) 评论(0) 推荐(0)