protected void Page_Load(object sender, EventArgs e)
        {
            //
            string newsid = Request.Params["newsid"].ToString();

            SchSystem.BLL.WebSchChnNewsV   bll   = new SchSystem.BLL.WebSchChnNewsV();//
            SchSystem.Model.WebSchChnNewsV model = bll.GetModel(int.Parse(newsid));
            if (model != null)
            {
                newlv   = model.Lv.ToString();
                chnname = model.ChnName;
                SchSystem.BLL.SchGradeInfo bllgrade = new SchSystem.BLL.SchGradeInfo();
                gradename = bllgrade.GetName(model.GradeId);
                SchSystem.BLL.SchClassInfo bllclass = new SchSystem.BLL.SchClassInfo();
                classname = bllclass.GetName(model.ClassId);
                content   = model.Content;
                isqur     = model.IsQuo.ToString();
                qurl      = model.QuoUrl;
                topic     = model.Topic;
                isrep     = model.IsReply.ToString();
            }
        }