开发者

C# WebUtility.HtmlEncode at .NET 3.0

开发者 https://www.devze.com 2023-01-30 10:53 出处:网络
I\'m making an (form) application, with the possibility to send a notification mail. On my application there are two variables, that will be placed into the html body of the mail. One of them is a nu

I'm making an (form) application, with the possibility to send a notification mail.

On my application there are two variables, that will be placed into the html body of the mail. One of them is a number, but the second is a name, which can contain the < and > characters.

I found an useful function to encode this, but the System.Net.WebUtility.HtmlEncode(String); only works on .NET 4.0, while my app i开发者_运维知识库s programmed in .NET 3.0.

Is there a simple function to replace the System.Net.WebUtility.HtmlEncode(String); which works in .NET 3.0?


System.Web.HttpUtility.HtmlEncode exists from 1.1


You can try:

HttpUtility.HtmlEncode(...);

In System.Web.dll


Yes there's HttpServerUtility.HtmlEncode.

0

精彩评论

暂无评论...
验证码 换一张
取 消