程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 再次使用Kindeidtor的經驗

再次使用Kindeidtor的經驗

編輯:關於JSP

1 下載Kindeditor插件
2.新建一個kindeditor的文件夾,將原來的kindeditor目錄下的asp.net,attached,lang,plugins,themes目錄以及kindeditor.js、kindeditor-min.js文件放到新建的kindeditor目錄下去
3.新建的kindeditor目錄放到web項目的根目錄下方去
4.按照asp.net下的demo.aspx文件前台代碼,配置需要用到kindeditor的頁面
5.後台.cs文件訪問編輯器中添加的內容,代碼如下:
News news=new News();

            news.Content = content1.Value;

            news.Title = "kjkdjkajdkfjdk";

            news.EntryDate = DateTime.Now;      
6.在web.config文件的system.web節點下添加如下代碼:
<httpRuntime requestValidationMode="2.0"/>

 <pages validateRequest="false"/>
7.運行即可實現在線編輯器的功能

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved