TinyMCE 和.Net - 在文本中使用单引号进行 POST 时出错
我在 .Net Web Forms 应用程序中使用 jQuery TinyMCE 控件。
我主要将它与 AJAX 和 Web 服务一起使用,但在一个实例中,我必须让它作为表单的一部分发布到服务器。
对于几乎所有输入,它都可以正常工作
$('#<%= eText.ClientID %>').tinymce({
encoding: 'xml'
});
,但是当我尝试保存单引号 '
时,我收到不安全输入错误。
我能做什么来处理这个问题?
I am using the jQuery TinyMCE control in my .Net Web Forms application.
I primarily use it with AJAX and webservices however in one instance I have to let it post to the server as a part of the form.
For almost all input it works fine with
$('#<%= eText.ClientID %>').tinymce({
encoding: 'xml'
});
However the moment I try to save a single quote '
I get the unsafe input error.
What can I do to handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于使用版本 4 的用户:
For those using version 4:
哎呀,当你放弃并问一个这样的问题时,你会在谷歌上找到答案。
我可能稍后会需要这个,所以我将把它留在这里。
感谢这个博客上的OP。
http://blog.tentaclesoftware.com/archive/2010/07 /22/96.aspx#414
Oi, just when you give up and ask a SO question you find the answer on google.
I'm probably going to need this later so I'm going to leave this here.
Thanks to OP on this blog.
http://blog.tentaclesoftware.com/archive/2010/07/22/96.aspx#414