@Html.TextAreaFor(m => m.Content, new { cols = "100", @style = "width:670px;height:200px;" })
var editor;
    KindEditor.ready(function (K) {
        editor = K.create('textarea[name="Content"]',
            {
                uploadJson: '…', // 相对于当前页面的路径
                allowFileManager: true,
                allowUpload: true
            });
    });