ASP.NET 사 이 트 는 Kindeditor 부 텍스트 편집기 설정 절 차 를 사용 합 니 다.
4532 단어 Kindeditor하이퍼텍스트편집기
<%@ Page Language="C#" AutoEventWireup="true" ValidateRequest="false" CodeBehind="XXX.cs" Inherits="XXX" %>
4.스 크 립 트 파일 도입(XXX 부분 수정 필요)
<!-- ↓ -->
<link type="text/css" rel="stylesheet" href="../editor/themes/default/default.css" />
<link rel="stylesheet" href="../editor/plugins/code/prettify.css" />
<script type="text/javascript" charset="utf-8" src="../editor/kindeditor-min.js"></script>
<script type="text/javascript" charset="utf-8" src="../editor/lang/zh_CN.js"></script>
<script type="text/javascript" charset="utf-8" src="../editor/plugins/code/prettify.js"></script>
<script type="text/javascript">
KindEditor.ready(function (K) {
var editor1 = K.create('#XXX', {
items: [
'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
'removeformat', 'strikethrough', 'lineheight', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|', 'emoticons', 'link', 'insertfile', 'media', '|', 'image', 'multiimage', 'map', 'baidumap', '|', 'preview', 'fullscreen',
],
cssPath: '../editor/plugins/code/prettify.css',
uploadJson: '../editor/asp.net/upload_json.ashx',
fileManagerJson: '../editor/asp.net/file_manager_json.ashx',
allowFileManager: true,
pasteType: 1,
afterCreate: function () {
var self = this;
K.ctrl(document, 13, function () {
self.sync();
K('form[name=XXX]')[0].submit();
});
K.ctrl(self.edit.doc, 13, function () {
self.sync();
K('form[name=XXX]')[0].submit();
});
}
});
prettyPrint();
});
</script>
<!-- ↑-->
5.편집기 사용(XXX 부분 수정 필요)
<!-- -->
<textarea id="XXX" name="XXX" runat="server" cols="100" rows="8" style="width:1000px;height:500px;visibility:hidden;"></textarea>
6.자신의 필요 에 따라 설정 수정(파일 경로:웹\editor\asp.net\filemanager_json.ashx)
// ,
String rootPath = "../../";
// URL,
String rootUrl = aspxUrl + "../attached/";
//
String fileTypes = "gif,jpg,jpeg,png,bmp";
7.배경 에서 편집기 내용 가 져 오기(XXX 부분 수정 필요)
Request.Form["XXX"]
서버 엔 드 프로그램(ASP,PHP,ASP.NET 등)이 내용 을 직접 표시 하기 때문에 HTML 특수 문자(>,<,&,")를 변환 해 야 하기 때문에 도구 류 를 썼 습 니 다
public class HtmlUtil
{
/// <summary>
/// HTML
/// </summary>
/// <param name="content"></param>
/// <returns></returns>
public static String escapeHtml(String content)
{
return content.Replace("&", "&")
.Replace("<", "<")
.Replace(">", ">")
.Replace("\"", """);
}
/// <summary>
/// HTML
/// </summary>
/// <param name="content"></param>
/// <returns></returns>
public static String unescapeHtml(String content)
{
return content.Replace("&", "&")
.Replace("<", "<")
.Replace(">", ">")
.Replace(""", "\"");
}
}
데이터베이스 에 삽입 할 때,특수 문자 교체(XXX 부분 수정 필요)
HtmlUtil.escapeHtml(Request.Form["XXX"])
데이터베이스 에서 데 이 터 를 읽 을 때 특수 문자 복원(XXX 부분 수정 필요)
HtmlUtil.unescapeHtml(XXX)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PHP 가 구현 하 는 긴 텍스트 페이지 표시 기능 예제이 사례 는 PHP 가 구현 하 는 긴 텍스트 페이지 표시 기능 을 보 여 줍 니 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다. 코드 1、index.php 2、funct...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.