使用 ckeditor 在 ASP.net 和 LINQ to SQL 中输入消息

发布于 2024-08-10 01:55:14 字数 293 浏览 5 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百思不得你姐 2024-08-17 01:55:14

尝试对 CKEditor HTML 输出进行编码。将此添加到您的 CKEditor 声明中:

oCKeditor.Config['HtmlEncodeOutput'] = true;

有关您在 ASP.NET 上遇到的错误的更多信息。 NET网站

try encoding your CKEditor HTML output. Add this to your CKEditor declaration:

oCKeditor.Config['HtmlEncodeOutput'] = true;

More information about the error you're getting on ASP.NET Website

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文