tags:

views:

85

answers:

1

I have implemented CKEditor via an EditorTemplate called wysiwyg.ascx

Everything loads fine in edit view, when I attempt to save the model back to the database via POST Edit ActionResult in the controller. the property that uses the wysiwyg comes back null. I am not sure how to solve this.

A: 
<%= Html.TextArea**("Description",** Model, 5, 100, new { @class = "ckeditor" })%>

The problem was due to the Name. "Description" clear Description and replace with "".

Jake