我将下面的段落插入到数据库中。但是显示它时显示为(这是不希望的):
使用本网站须遵守以下使用条款:•本网站页面的内容仅供您参考和使用。它可随时更改,恕不另行通知。 •我们或任何第三方均未对准确性提供任何保证或保证,
期望的段落观点: 使用本网站须遵守以下使用条款:
•本网站页面的内容仅供参考,仅供参考。它可随时更改,恕不另行通知。 •我们或任何第三方均未对准确性提供任何保证或保证。
我们如何在asp.net/C#
中实现这一目标答案 0 :(得分:0)
将完整的html插入数据库并将div设置为innerhtml
<div id="div" runat="server"></div>
div.InnerHtml = "paragraph from Database which saved as HTML";"
答案 1 :(得分:0)
使用paragraph标记。
<p>The use of this website is subject to the following terms of use:</p>
<p>• The content of the pages of this website is for your general information and use only. It is subject to change without notice. • Neither we nor any third parties provide any warranty or guarantee as to the accuracy.</p>
答案 2 :(得分:0)
在将文本放入控件之前,可能需要使用br标签替换换行符/回车符号。或者,当存储在数据库中时,可能会将br标记放入段落文本中。
要替换,您可以使用String.Replace()
可在此处找到字符代码http://www.asciitable.com/
查找字符代码10和13.你应该检查你试图替换的文本,找出这两个代码是否在字符串中,或者只是其中一个。