<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server" Height="100%" >
</FCKeditorV2:FCKeditor>
在页面中的fck是一个控件,如上,在controller中得到fck中的内容是
//编辑新闻
[AcceptVerbs(HttpVerbs.Post), ValidateInput(false)]
public ActionResult EditNews(string id, string Title, string Content, string CateCode, string type, string FCKeditor1, HttpPostedFileBase picture)
{
string PhotoPath = getPhotoPath(picture);
string news_content = FCKeditor1;
NewService.EditNews(id, Title, news_content, CateCode, type, PhotoPath);
ViewData["News"] = NewService.getNewsList();
return View("Index");
}
请问如果从数据库中得到fck的值后,怎么传给fck显示出来?