Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 APS.NET 中,CKeditor .Text服务器端属性不返回与.getData()客户端方法相同的方法。
示例:如果我 <script>在 WYSIWYG 编辑器上编写,服务器端.Text属性返回<p><script></p>,客户端.getData()返回<p><script></p>
<script>
<p><script></p>
<p><script></p>
我找不到任何返回.getData功能的服务器端属性。我错过了什么吗?
要获得与客户端相同的值,请使用String value = Server.HtmlEncode(ckeditor.text).
String value = Server.HtmlEncode(ckeditor.text)
但这也会编码<p>和</p>标记。 如果您不想要它,请全部替换<p>并</p>用一些字符对其进行编码并用<p>和</p>标签替换字符。
<p>
</p>