Пример #1
0
    private void showstudents()
    {
        int Sgrade = Int32.Parse(DDLgrade.SelectedValue.ToString());
        int Sclass = Int32.Parse(DDLclass.SelectedValue.ToString());

        LearnSite.BLL.Students stus = new LearnSite.BLL.Students();
        GVCourse.DataSource = stus.GetListTerm(Sgrade, Sclass);
        GVCourse.DataBind();
        Btnape.ToolTip = "开始自动评价汇总:" + DDLA.SelectedValue + "%为A优秀," + DDLE.SelectedValue + "%为E待合格,其余为合格,并保存当前学期成绩表";
    }
Пример #2
0
 private void showstudents()
 {
     int Sgrade = Int32.Parse(DDLgrade.SelectedValue.ToString());
     int Sclass = Int32.Parse(DDLclass.SelectedValue.ToString());
     LearnSite.BLL.Students stus = new LearnSite.BLL.Students();
     GVCourse.DataSource = stus.GetListTerm(Sgrade, Sclass);
     GVCourse.DataBind();
 }