数据库中插入一篇文章,然后要显示再网页上怎么弄
3个回答
展开全部
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命名空间
先将普通文章进行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命名空间
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |