使用 ckeditor 在 ASP.net 和 LINQ to SQL 中输入消息
我想使用 Ckeditor 输入文本,并且想将该文本保存在数据库中,但是当我在编辑器中编写文本并且想将其保存在数据库中时,出现了此错误。
从客户端检测到潜在危险的 Request.Form 值 (editor1="
这是我的代码:
M.Body = editor1.Value;
我想要保存文本的领域是正文,我使用 LINQ to SQL 与数据库建立关系。
如何使用此编辑器将文本保存在数据库中?
I want to use Ckeditor for Entering text and I want to save that text in Database,but when I Write the text in editor and I want to save it in database this error appeared .
A potentially dangerous Request.Form value was detected from the client (editor1="
this is my code :
M.Body = editor1.Value;
my feild that I want to save the text is Body and I use LINQ to SQL for relation with database .
How do I can save text in database whit this editor ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试对 CKEditor HTML 输出进行编码。将此添加到您的 CKEditor 声明中:
有关您在 ASP.NET 上遇到的错误的更多信息。 NET网站
try encoding your CKEditor HTML output. Add this to your CKEditor declaration:
More information about the error you're getting on ASP.NET Website