示例#1
0
    private void ShowMtitle()
    {
        string Sgrade = Request.Cookies[LearnSite.Common.CookieHelp.stuCookieNname].Values["Sgrade"].ToString();
        string Sclass = Request.Cookies[LearnSite.Common.CookieHelp.stuCookieNname].Values["Sclass"].ToString();

        string mid = Request.QueryString["Mid"].ToString();

        LearnSite.BLL.TxtForm tbll = new LearnSite.BLL.TxtForm();
        string mtitle = tbll.GetMtitle(Int32.Parse(mid));

        LbMtitle.Text = mtitle + "—" + Sgrade + "年级" + Sclass + "班" + "填写列表";
    }
示例#2
0
    private void ShowMtitle()
    {
        int Sgrade = cook.Sgrade;
        int Sclass = cook.Sclass;

        string mid = Request.QueryString["Mid"].ToString();

        LearnSite.BLL.TxtForm tbll = new LearnSite.BLL.TxtForm();
        string mtitle = tbll.GetMtitle(Int32.Parse(mid));

        LbMtitle.Text = mtitle + "—" + Sgrade.ToString() + "年级" + Sclass.ToString() + "班" + "填写列表";
    }