Example #1
0
 private void Showthink()
 {
     if (Request.QueryString["Cid"] != null)
     {
         string Fcid = Request.QueryString["Cid"].ToString();
         LearnSite.Model.Flection flection = new LearnSite.Model.Flection();
         LearnSite.BLL.Flection flectionbll = new LearnSite.BLL.Flection();
         flection = flectionbll.GetModel(Int32.Parse(Fcid));
         LearnSite.BLL.Courses cs = new LearnSite.BLL.Courses();
         Texttitle.Text = cs.GetTitle(Int32.Parse(Fcid));
         FCKeditor1.Value = HttpUtility.HtmlDecode(flection.Fcontent);
     }
 }
Example #2
0
 private void Showthink()
 {
     if (Request.QueryString["Cid"] != null)
     {
         string Fcid = Request.QueryString["Cid"].ToString();
         LearnSite.Model.Flection flection    = new LearnSite.Model.Flection();
         LearnSite.BLL.Flection   flectionbll = new LearnSite.BLL.Flection();
         flection = flectionbll.GetModel(Int32.Parse(Fcid));
         LearnSite.BLL.Courses cs = new LearnSite.BLL.Courses();
         Texttitle.Text     = cs.GetTitle(Int32.Parse(Fcid));
         mcontent.InnerText = HttpUtility.HtmlDecode(flection.Fcontent);
     }
 }