示例#1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     Modelx m = new Modelx();
     string uid = (string)Session["uid"];
     //string uid = m.uid;
     if (uid == null || m.getUserTypeByUserID(uid) ==null|| m.getUserTypeByUserID(uid).Equals("T") || m.getUserTypeByUserID(uid).Equals("S") || m.getUserTypeByUserID(uid).Equals("P"))
     {
         Session["uid"] = null;
         Context.Response.Redirect("http://oa.chsx.cn/ISchoolOs/mainlogin.aspx");
     }
     string pidEn = Request["pid"];
     string sidEn = Request["sid"];
     decimal pid = Convert.ToDecimal(encryption.DeCode(pidEn));
     decimal sid = Convert.ToDecimal(encryption.DeCode(sidEn));
     Modelx.paginationUnit = 8;
     int pageNow = Convert.ToInt32(Context.Request["pageNow"]);
     if (pageNow == 0) { pageNow = 1; }
     int pageTotal = 0;
     string sqlstm = "select count(*) from YXZ_rec where sSerID=" + sid + " and pSerID=" + pid + " ;";
     if (m.getCount(sqlstm) % (Modelx.paginationUnit) == 0) { pageTotal = m.getCount(sqlstm) / (Modelx.paginationUnit); }
     else { pageTotal = m.getCount(sqlstm) / (Modelx.paginationUnit) + 1; }
     Context.Items["pageTotal"] = pageTotal;
     ArrayList al = m.getConvBySPSerID(sid, pid, pageNow);
     Context.Items["al"] = al;
 }
示例#2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        string sidEn = Request["sid"];
        string pidEn = Request["pid"];
        Modelx m     = new Modelx();
        //string uid = m.UID;
        string uid = (string)Session["uid"];

        if (uid == null || m.getUserTypeByUserID(uid) == null || !m.getUserTypeByUserID(uid).Equals("S"))
        {
            Session["uid"] = null;
            Context.Response.Redirect("http://oa.chsx.cn/ISchoolOs/mainlogin.aspx");
        }
        //string page = Request["page"];
        //if (page == null) { page = ""; }
        ArrayList al = null;

        Modelx.paginationUnit = 8;
        int pageNow = Convert.ToInt32(Context.Request["pageNow"]);

        if (pageNow == 0)
        {
            pageNow = 1;
        }
        int pageTotal = 0;

        //decimal sid = Convert.ToDecimal(encryption.DeCode(sidEn));
        //decimal pid = Convert.ToDecimal(encryption.DeCode(pidEn));
        Modelx.stuAppt stu = new Modelx.stuAppt();
        stu = (Modelx.stuAppt)Session["stu"];
        if (stu != null)
        {
            decimal sid     = Convert.ToDecimal(stu.SerID);
            decimal pid     = Convert.ToDecimal(stu.pSerID);
            string  sqlstm2 = "select count(*) from YXZ_rec where sSerID=" + sid + " and pSerID=" + pid + " ;";
            if (m.getCount(sqlstm2) % (Modelx.paginationUnit) == 0)
            {
                pageTotal = m.getCount(sqlstm2) / (Modelx.paginationUnit);
            }
            else
            {
                pageTotal = m.getCount(sqlstm2) / (Modelx.paginationUnit) + 1;
            }
            Context.Items["pageTotal"] = pageTotal;

            /*if (page.Equals("list")) {
             *  al = m.getConvBySPSerID(Convert.ToDecimal( sidEn),Convert.ToDecimal( pidEn));
             * }*/
            // else
            // {
            al = m.getConvBySPSerID(sid, pid, pageNow);
            // }
            Context.Items["conv"] = al;
        }
    }
示例#3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     string sidEn = Request["sid"];
     string pidEn = Request["pid"];
     Modelx m = new Modelx();
     //string uid = m.UID;
     string uid = (string)Session["uid"];
     if (uid == null || m.getUserTypeByUserID(uid) ==null|| !m.getUserTypeByUserID(uid).Equals("S")) {
         Session["uid"] = null;
         Context.Response.Redirect("http://oa.chsx.cn/ISchoolOs/mainlogin.aspx");
     }
     //string page = Request["page"];
     //if (page == null) { page = ""; }
     ArrayList al = null;
     Modelx.paginationUnit = 8;
     int pageNow = Convert.ToInt32(Context.Request["pageNow"]);
     if (pageNow == 0) { pageNow = 1; }
     int pageTotal = 0;
     //decimal sid = Convert.ToDecimal(encryption.DeCode(sidEn));
     //decimal pid = Convert.ToDecimal(encryption.DeCode(pidEn));
     Modelx.stuAppt stu = new Modelx.stuAppt();
     stu = (Modelx.stuAppt)Session["stu"];
     if (stu != null)
     {
         decimal sid = Convert.ToDecimal(stu.SerID);
         decimal pid = Convert.ToDecimal(stu.pSerID);
         string sqlstm2 = "select count(*) from YXZ_rec where sSerID=" + sid + " and pSerID=" + pid + " ;";
         if (m.getCount(sqlstm2) % (Modelx.paginationUnit) == 0) { pageTotal = m.getCount(sqlstm2) / (Modelx.paginationUnit); }
         else { pageTotal = m.getCount(sqlstm2) / (Modelx.paginationUnit) + 1; }
         Context.Items["pageTotal"] = pageTotal;
         /*if (page.Equals("list")) {
             al = m.getConvBySPSerID(Convert.ToDecimal( sidEn),Convert.ToDecimal( pidEn));
         }*/
         // else
         // {
         al = m.getConvBySPSerID(sid, pid, pageNow);
         // }
         Context.Items["conv"] = al;
     }
 }
示例#4
0
    protected void Page_Load(object sender, EventArgs e)
    {
        Modelx m   = new Modelx();
        string uid = (string)Session["uid"];

        if (uid == null || m.getUserTypeByUserID(uid) == null || !m.getUserTypeByUserID(uid).Equals("T"))
        {
            Session["uid"] = null;
            Response.Redirect("http://oa.chsx.cn/ISchoolOs/mainlogin.aspx");
        }
        ArrayList al     = new ArrayList();
        decimal   SerID  = Convert.ToDecimal(encryption.DeCode(Request["sid"]));
        decimal   pSerID = Convert.ToDecimal(encryption.DeCode(Request["pid"]));

        Modelx.paginationUnit = 8;
        int pageNow = Convert.ToInt32(Context.Request["pageNow"]);

        if (pageNow == 0)
        {
            pageNow = 1;
        }
        int pageTotal = 0;

        if (SerID != 0)
        {
            string sqlstm2 = "select count(*) from YXZ_rec where sSerID=" + SerID + " and pSerID=" + pSerID + " ;";
            if (m.getCount(sqlstm2) % (Modelx.paginationUnit) == 0)
            {
                pageTotal = m.getCount(sqlstm2) / (Modelx.paginationUnit);
            }
            else
            {
                pageTotal = m.getCount(sqlstm2) / (Modelx.paginationUnit) + 1;
            }
            Context.Items["pageTotal"] = pageTotal;
            al = m.getConvBySPSerID(SerID, pSerID, pageNow);
            Context.Items["al"] = al;
        }
    }