ASP.NET - 如何转义带有斜线的撇号以插入数据库
我不知道如何用斜杠转义撇号。我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据此 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.
您应该将双引号替换为此
代码 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.
您应该将
其替换为在文本片段中存储引用标记的最佳且有时是唯一的方法。
You should replace with
which is the best and sometimes only way to store quotaiton marks in text fragments.