摘要: protected void Page_Load(object sender, EventArgs e) { if (Request["action"] != null) { DataTable dt = this.myData(); string result=""; string s = DataTableToJson(result, dt); Response.Write(s); Response.End(); } } ... 阅读全文
posted @ 2010-07-05 12:21 老高dotnet实践 阅读(1759) 评论(1) 推荐(0) 编辑