ASP.NET - 如何转义带有斜线的撇号以插入数据库

发布于 2024-08-02 19:10:29 字数 116 浏览 7 评论 0原文

我不知道如何用斜杠转义撇号。我正在使用 fckeditor,fckeditor 将所有单撇号替换为双撇号。我的代码正在做同样的事情,所以当我查看内容时,html 中有两个撇号。我认为我可以用斜线转义撇号,这样就可以了。

I am not sure how to escape an apostrophe with a slash. I am using fckeditor and fckeditor replaces all single apostrophes with double apostrophes. My code is doing the same thing so when I view the content there are two apostrophe in the html. I thought that I could escape the apostrophe with a slash and that should do the trick.

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

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

发布评论

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

评论(3

你不是我要的菜∠ 2024-08-09 19:10:29

根据此 HTML 实体列表,您应该使用 '< /code> (但这显然在 IE 中不起作用)或 '

您可以在HTML 符号实体参考中找到更多信息。

According to this list of HTML entities you should use ' (but this will apparantly not work in IE) or '.

You can find more on the HTML Symbol Entities Reference.

上课铃就是安魂曲 2024-08-09 19:10:29

您应该将双引号替换为此

代码 9" x 9"给你输出为 9" X 9"

如果你的数据库行包含单个撇号,你可以通过将该值分配给标签控件文本属性来显示,它应该可以正常工作,没有任何问题。

You should replace double quote with

This code 9" x 9" with give you output as 9" X 9"

And if your database row contain single apostrophe, you can display by assigning that value to lable controls text property and it should work without any issues.

仅一夜美梦 2024-08-09 19:10:29

您应该将

"

其替换为在文本片段中存储引用标记的最佳且有时是唯一的方法。

You should replace with

"

which is the best and sometimes only way to store quotaiton marks in text fragments.

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