如何在ASP.NET MVC 5中显示由ckeditor插入的数据

时间:2016-06-18 11:44:18

标签: c# asp.net-mvc view ckeditor

我正在开发一个ASP.NET MVC 5项目,我在我的项目中使用ckeditor将数据插入SQL Server。当我转到用户页面查看ckeditor插入的数据时,我会在下面的页面中看到html标签。请帮我解决这个问题

<h2 style="font-style:italic;"><strong>Hello</strong></h2> <p><strong>How Are You</strong></p>


[ValidateInput(false)]
    [HttpPost]
    [Authorize(Roles = "Admin")]
    public ActionResult InsertAboutConfirm(aboutu a, HttpPostedFileBase img)
    {
        if (img != null)
        {
            Guid g = Guid.NewGuid();
            img.SaveAs(Server.MapPath("~/images/" +g.ToString()+ img.FileName));
            a.img = g.ToString()  + img.FileName;
        }
        db._AboutusRepository.InsertItem(a);
        TempData["result"] = "اطلاعات شما بدرستی ثبت شد";
        return RedirectToAction("InsertAbout");
    }

See Image

我在模型中加载数据

 <div class="container padding-top">
                <div class="row">

                    <div class="col-md-8">
                        <!-- Widget Text-->
                        <div class="panel-box">
                            <div class="titles">
                                <h4>درباره ما</h4>
                            </div>
                            <div >
                                <div class="col-md-12" style=" font-family:'B Nazanin'">
                               @if (Model != null)
                               {
                                   @Model.matn
                               }

                                </div>
                            </div>
                        </div>
                        <!-- End Widget Text-->
                    </div>

See AboutUs page

0 个答案:

没有答案