02 2014 档案

摘要:public static class ExtendMethods { /// /// 绑定列表控件 /// /// 列表控件 /// 数据表 public static void BindListControl(this ListControl listControl, DataTable dt) { if (dt != null) { listControl.DataSource = dt; ... 阅读全文
posted @ 2014-02-21 09:58 --宁静以致远-- 阅读(158) 评论(0) 推荐(0)
摘要:protected void Page_Load(object sender, EventArgs e) { Response.Clear(); Response.ContentType = "application/json;charset=utf-8"; string str = ""; DataSet ds = SqlHelper.GetSqlDataSet("select top 3 Staff_id,name_sc as Staff_name from [tbl_ac... 阅读全文
posted @ 2014-02-20 16:21 --宁静以致远-- 阅读(13325) 评论(0) 推荐(0)