以下是insert
到database
的代码。使用ckeditor
,是否可以在web.config
到insert
数据中进行任何更改?
[HttpPost]
[ValidateInput(false)]
public ActionResult Create(Content cnt)
{
var dbContext = new MyDbDataContext();
Table4 tb = new Table4();
tb.Id = cnt.id;
tb.Title = cnt.title;
tb.Ptitle = cnt.page_title;
tb.Url = cnt.url;
tb.Description = cnt.description;
dbContext.Table4s.InsertOnSubmit(tb);
dbContext.SubmitChanges();
return View();
}
答案 0 :(得分:0)
你应该使用@ Html.Raw(YourItem),这样你的html标签就会呈现为html 喜欢这个
@ Html.Raw(item.Story)