0

我正在使用文本区域。此 Textarea 功能类似于富文本框。我的文本区域有

<div style="width:100px;"><div style="height="400px;"></div></div>

在按钮单击事件中,我想将此文本保存在数据库表中。但是我的编码是这样保存的

<div><div></div></div>
4

1 回答 1

1

问题是你必须编码你的代码

using System;
using System.Net;

class Program
{
    static void Main()
    {
    string a = WebUtility.HtmlEncode("<html><head><title>T</title></head></html>");
    string b = WebUtility.HtmlDecode(a);

    Console.WriteLine("After HtmlEncode: " + a);
    Console.WriteLine("After HtmlDecode: " + b);
    }
}

输出

在 HtmlEncode 之后:

&lt;html&gt;&lt;head&gt;&lt;title&gt;T&lt;/title&gt;&lt;/head&gt;&lt;/html&gt;

进一步阅读这些文章

http://stackoverflow.com/questions/1144535/htmlencode-from-class-library

http://msdn.microsoft.com/en-us/library/w3te6wfz.aspx

http://www.dotnetperls.com/htmlencode-htmldecode 
于 2013-06-25T12:12:54.690 回答