-3

我想将编码形式的 html 标签插入到 sql 数据库表中。我使用 MVC4 来开发它。我将 html 代码放入以下模型项中。

public class ResourceItems
{
     public string Res_Details { get; set; }
}

控制器/模型动作将是什么

4

1 回答 1

0

要对字符串进行编码,您可以使用HttpUtility.HtmlEncode函数。

private ActionResult Index(ResourceItem item){

    string encoded = HttpUtility.Encode(item.Res_Details);

    // Whatever you do to save to the database.
}

现在我不知道你的 MVC 代码是什么样的,所以上面的例子只是一个猜测。然而,编码的核心思想就足够了。

于 2013-07-17T08:10:29.993 回答