数据库中插入一篇文章,然后显示再网页上要保持原来的段落换行什么的,怎么弄
2个回答
展开全部
你需要用到一个文档录入的插件:
例如: DotNetTextBox3
先将普通文章进行html编码:
string lr = Server.HtmlEncode(WebEditor1.Text.Replace("'", "''"));
其中WebEditor1.Text就是输入文章的内容.
将lr写入数据库.
显录的时候读出lr;
再对lr进行回编码:
用Label1写出来.
Label1.Text=Server.HtmlDecode(Encoding.Unicode.GetString(System.Text.Encoding.Unicode.GetBytes(lr)));
使用的时候请导入system.text命名空间.
例如: DotNetTextBox3
先将普通文章进行html编码:
string lr = Server.HtmlEncode(WebEditor1.Text.Replace("'", "''"));
其中WebEditor1.Text就是输入文章的内容.
将lr写入数据库.
显录的时候读出lr;
再对lr进行回编码:
用Label1写出来.
Label1.Text=Server.HtmlDecode(Encoding.Unicode.GetString(System.Text.Encoding.Unicode.GetBytes(lr)));
使用的时候请导入system.text命名空间.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询