首页 > 代码库 > asp.net mvc下ckeditor使用

asp.net mvc下ckeditor使用

资源下载:ckeditor

第一步,引入必须文件“~/ckeditor/ckeditor.js”

第二步,替换文本域

 <%: Html.TextArea("Content",new { style = "width:80%" })%>
        <script type="text/javascript">
            CKEDITOR.replace(‘Content‘);
        </script>

asp.net mvc下ckeditor使用