protected void DlstStudentGradeCheckDataBind()
        {
            DalOperationAboutGradeCheck dal = new DalOperationAboutGradeCheck();
            //DataView dv = dal.GetUpdateTimeByStudentNo(studentNo).Tables[0].DefaultView;

            //this.dlstStudentGradeCheck.DataSource = dv;
            //this.dlstStudentGradeCheck.DataBind();

            DataTable dt = dal.GetGradeCheckNotify().Tables[0];

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                if (dt.Rows[i]["notifyTitle"].ToString().Trim().Length > 0)
                {

                    notifyTitle.NavigateUrl = "~/Common/ViewGradeCheckNotify.aspx?keepThis=true&TB_iframe=true&height=500&width=800";
                    notifyTitle.CssClass = "thickbox";
                    notifyTitle.Text = dt.Rows[i]["notifyTitle"].ToString().Trim() + "(点击查看重修重考详细通知)";

                    notifyTitle.ToolTip = dt.Rows[i]["notifyTitle"].ToString().Trim();
                }
            }

            //dlstStudentGradeCheckDataBind();
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            if(!IsPostBack)
            {
                DalOperationAboutGradeCheck dal = new DalOperationAboutGradeCheck();
                DataTable dt = dal.GetGradeCheckNotify().Tables[0];

                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    ltlNotifyTitle.Text = dt.Rows[i]["notifyTitle"].ToString().Trim();
                    ltlNotifyContent.Text = dt.Rows[i]["notifyContent"].ToString().Trim();
                    attachmentIds = dt.Rows[i]["attachmentIds"].ToString().Trim();
                }
            }
        }