将格式化文本从 MVC 3 应用程序保存到 MSSQL 数据库

发布于 2025-01-04 20:14:53 字数 225 浏览 1 评论 0 原文

在我的 MVC 3 应用程序中,我需要能够使用格式编辑文本(例如粗体文本、换行符等),并将编辑后的文本发送到 pdf 文档。 我想要的是将格式化文本放入 MSSQL DB 中,并能够在需要时检索它。

现在我陷入了基础知识,当我将文本保存到数据库时,数据库返回一个长文本字符串而不是格式化文本。还有其他方法吗?

为了格式化,我使用 CKeditor 库。

也许有更简单的方法可以做到这一点?

In my MVC 3 application i need to be able to edit text with formatting (ex bold text, linebreaks eks.), and send that edited text to a pdf document.
What i want is to put that formated text inside of a MSSQL DB, and be able to retrive it when needed.

Right now i am stuck at basics, when i am saving text to DB, db returns a long text string instead of formated text. Are there any other approaches of doing it?

For formatting i am using CKeditor library.

Maybe there are easier ways of doing it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

⊕婉儿 2025-01-11 20:14:53

如果我没记错的话,您可以使用 html.raw helper 来获取 html 中的字符串。然后将其存储在数据库中。但使用html.Raw,会导致安全循环。用户可能会进行 XSS 攻击。
您可以使用 @Html.Raw() 和 AntiForgeryTokens。

var someText = "<b>Hello World</b> blahblah"; 
@Html.Raw(someText);

Html.Raw() , Html.AntiForgeryToken

if i am not wrong you can use html.raw helper to get the string in html . then store it in database. but using html.Raw, it will lead to security loops. user may do XSS attacks.
you can use @Html.Raw(), with AntiForgeryTokens.

var someText = "<b>Hello World</b> blahblah"; 
@Html.Raw(someText);

Html.Raw() , Html.AntiForgeryToken

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