public void GetGridData()
 {
     string _searchcontent = "";
     string _sortname = "";
     string _sortdirection = "";
     string _pagenumber = "";
     string _pagesize = "";
     string _deptid = "";
     _searchcontent = Parameters["psearchcontent"];
     _sortname = Parameters["psortname"];
     if (!string.IsNullOrEmpty(_sortname))
     {
         sSortName = _sortname;
     }
     _sortdirection = Parameters["psortdirection"];
     if (!string.IsNullOrEmpty(_sortdirection))
     {
         sSortDirection = _sortdirection;
     }
     _pagenumber = Parameters["ppagenumber"];
     if (!string.IsNullOrEmpty(_pagenumber))
     {
         sPageIndex = Convert.ToInt32(_pagenumber);
     }
     _pagesize = Parameters["ppagesize"];
     if (!string.IsNullOrEmpty(_pagesize))
     {
         sPageSize = Convert.ToInt32(_pagesize);
     }
     _deptid = Parameters["pdeptid"];
     string _parentid = Parameters["pparentid"];
     List<PmOrgInfo> lists = new List<PmOrgInfo>();
     PmOrgInfoBiz biz = new PmOrgInfoBiz();
     biz.GetParentOrgName(_parentid, ref parentorgname);
     string _searchtext = _searchcontent;
     string wheresql = "(FDepartmentID = " + _deptid + ") and (FParentOrgId = " + _parentid + ") ";
     if (!string.IsNullOrEmpty(_searchtext))
     {
         //difine wheresql
         wheresql += " and (FOrgName like '%" + _searchtext + "%')";
     }
     NameValueCollection where = new NameValueCollection();
     where.Add("condition", wheresql);
     NameValueCollection orderby = new NameValueCollection();
     orderby.Add(_sortname, _sortdirection);
     Int32 totalcount = 0;
     lists = biz.Select(where, orderby, Convert.ToInt32(sPageIndex), Convert.ToInt32(sPageSize), out totalcount);
     string datasource = Utils.GetRepeaterDatasource(lists, sPageIndex, sPageSize, totalcount);
     Response.Write(parentorgname + "|]" + datasource);
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     string _orgid = Parameters["orgid"];
     PmOrgInfoBiz biz = new PmOrgInfoBiz();
     biz.GetParentOrgName(_orgid, ref gsorgname);
 }