如何在mvc中使用ckeditor

时间:2014-03-29 10:08:37

标签: asp.net-mvc ckeditor

我正在使用ckeditor但它不是保存信息到数据库 这是我在视图中的代码

 @using (Html.BeginForm())
 {
  <table>
    <tr><td>Heading</td><td>@Html.TextBoxFor(model =>model.page)</td></tr>
    <tr><td>Description</td><td>
    @Html.TextArea("create", new { @class ="ckeditor", @id="AboutUs"})</td></tr>
       <tr><td></td><td></td></tr>
     <tr><td></td><td> <input type="submit"  value="create" /></td></tr>

      <tr><td></td><td> @Html.ActionLink("Go Back","Index")</td></tr>
    </table>
   }

0 个答案:

没有答案