protected void Page_Load(object sender, System.EventArgs e)
        {
            // Put user code to initialize the page here
            string strDept = Request.QueryString["dept"].ToString();
            string strDate = Request.QueryString["date"].ToString();

            string[] SchDatelist = strDate.Split('-');
            if (SchDatelist.Length != 3)
            {
                this.SetErrorMsgPageBydir("时间格式不正确!");
                return;
            }
            strDate = SchDatelist[0] + SchDatelist[1] + SchDatelist[2];
            string strDateFormat = SchDatelist[0] + "年" + SchDatelist[1] + "月" + SchDatelist[2] + "日";

            if (strDept == "" || strDate == "")
            {
                this.SetErrorMsgPageBydir("查询出错!");
                return;
            }
            else
            {
                Hashtable htapp        = (Hashtable)Application["appconf"];
                string    strcons      = (string)htapp["cons"];
                EmpBusi   ebu          = new EmpBusi(strcons);
                ArrayList alDeptSchAll = ebu.GetDeptSchDetail(strDept, strDate);
                if (alDeptSchAll == null || alDeptSchAll.Count <= 0)
                {
                    this.SetErrorMsgPageBydir("查询出错!");
                    return;
                }
                else
                {
                    Response.Write("<table align='center' border='0' width='90%' cellSpacing='10' cellPadding='10'><tr><td style='FONT-WEIGHT: bold; FONT-SIZE: 15pt; COLOR: #330033' align='center'>排班明细表</td></tr></table>");
                    Response.Write("<table align='center' border='0' width='90%' cellSpacing='5' cellPadding='5'><tr><td>门店:" + strDept + "</td><td>日期:" + strDateFormat + "</td></tr></table>");
                    Response.Write("<table align='center' border='1' width='90%' cellSpacing='1' cellPadding='1' bordercolor='#ffccff' style='FONT-SIZE: 10pt'><tr style='COLOR: #0033ff'><td>职务类型</td><td>班次</td><td>人员列表</td><td>上班时间</td><td>下班时间</td></tr>");
                    foreach (CMSMStruct.DeptSchStruct deptstmp in alDeptSchAll)
                    {
                        if (deptstmp.strEmpNameGroup == "未安排")
                        {
                            Response.Write("<tr><td>" + deptstmp.strEmpOF + "</td><td>" + deptstmp.strClass + "</td><td style='COLOR: #cc0000'>" + deptstmp.strEmpNameGroup + "</td><td>" + deptstmp.strCheckIn + "</td><td>" + deptstmp.strCheckOut + "</td><td></tr>");
                        }
                        else
                        {
                            Response.Write("<tr><td>" + deptstmp.strEmpOF + "</td><td>" + deptstmp.strClass + "</td><td>" + deptstmp.strEmpNameGroup + "</td><td>" + deptstmp.strCheckIn + "</td><td>" + deptstmp.strCheckOut + "</td><td></tr>");
                        }
                    }
                    Response.Write("</table>");
                }

                return;
            }
        }