コード例 #1
0
 public void DelNation()
 {
     string _parm = Parameters["pparm"];
     SysNationBiz biz = new SysNationBiz();
     ErrorEntity ErrInfo = new ErrorEntity();
     biz.Delete(_parm, out ErrInfo);
     Response.Write(ErrInfo.ToJson());
 }
コード例 #2
0
 public void GetGridData()
 {
     string _searchcontent = "";
     string _sortname = "";
     string _sortdirection = "";
     string _pagenumber = "";
     string _pagesize = "";
     _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);
     }
     List<SysNation> lists = new List<SysNation>();
     SysNationBiz biz = new SysNationBiz();
     string _searchtext = _searchcontent;
     string wheresql = "";
     if (!string.IsNullOrEmpty(_searchtext))
     {
         wheresql = "(FNationName like '%" + _searchtext + "%')";
     }
     else
     {
         wheresql = "1=1";
     }
     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(datasource);
 }
コード例 #3
0
 public void GetNationItem()
 {
     string _id = Parameters["pid"];
     SysNationBiz biz = new SysNationBiz();
     SysNation item = new SysNation();
     item = biz.Select(_id);
     if (item == null)
     {
         Response.Write("");
     }
     else
     {
         Response.Write(item.ToJson());
     }
 }
コード例 #4
0
 public void SaveItem()
 {
     string _nationid = Parameters["pnationid"];
     string _nationname = Parameters["pnationname"];
     string _nationorder = Parameters["pnationorder"];
     SysNationBiz biz = new SysNationBiz();
     SysNation item = new SysNation();
     item.FNationID = string.IsNullOrEmpty(_nationid) ? 0 : Convert.ToInt64(_nationid);
     item.FNationName = _nationname;
     item.FNationOrder = string.IsNullOrEmpty(_nationorder) ? 0 : Convert.ToInt32(_nationorder);
     ErrorEntity ErrInfo = new ErrorEntity();
     if (item.FNationID == 0)
     {
         biz.Insert(item, out ErrInfo);
     }
     else
     {
         biz.Update(item, out ErrInfo);
     }
     Response.Write(ErrInfo.ToJson());
 }
コード例 #5
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                List<SysDepartment> deptlist = new List<SysDepartment>();
                SysDepartmentBiz deptbiz = new SysDepartmentBiz();
                deptlist = deptbiz.SelectDeptByUser(userid);
                AddDatasource("deptlist", deptlist);

                List<SysNation> nationlist = new List<SysNation>();
                SysNationBiz nationbiz = new SysNationBiz();
                nationlist = nationbiz.Select();
                AddDatasource("nationlist", nationlist);

                List<SysEducation> educationlist = new List<SysEducation>();
                SysEducationBiz edbiz = new SysEducationBiz();
                educationlist = edbiz.Select();
                AddDatasource("educationlist", educationlist);
            }
        }