摘要: /// /// 部门列表事项 /// /// /// /// /// public DataSet GetXZSPDeptPage(int currentPage, int topNumber, string DeptID, string sxType) { //sxType xz行政职权(除了便民服务,其他都是) bmfw 便民服务 string sqlStr = ""; if (sxType != "" && sxType == "bmfw") { sqlStr += " and sab.adid = ( 阅读全文
posted @ 2013-08-20 11:27 Amir_Blogs 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 前台 后台 /// /// 行绑定事件 /// /// /// protected void rpCommonSub_ItemDataBound(object sender, RepeaterItemEventArgs e) { RepeaterItem rptItem = e.Item; DataRow dtRow = (rptItem.DataItem as DataRowView).Row; int id = int.Parse(dtRow["atID"].ToString()); string sectionName = dtRow["atName&quo 阅读全文
posted @ 2013-08-20 11:23 Amir_Blogs 阅读(589) 评论(0) 推荐(0) 编辑
摘要: function GetRequest() { var url = location.search; //获取url中"?"符后的字串 var theRequest = new Object(); if (url.indexOf("?") != -1) { var str = url.substr(1); strs = str.split("&"); for(var i = 0; i < strs.length; i ++) { theRequest[strs[i].split("=")[0]]=un 阅读全文
posted @ 2013-08-20 10:50 Amir_Blogs 阅读(1094) 评论(0) 推荐(0) 编辑