本文介绍了Antixss GetSafeHtmlFragment编码&作为& amp;的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

public static string SanitizeHtml(this string s)

{

返回AntiXss.GetSafeHtmlFragment(s);

}



但是,如果我传入这样的字符串:



black&white





它编码&符号所以它变成:



black&白色



有没有办法阻止它编码这个字符?

public static string SanitizeHtml(this string s)
{
return AntiXss.GetSafeHtmlFragment(s);
}

However, if I pass in a string like this:

black & white


it is encoding the ampersand so it becomes:

black & white

Is there a way of preventing it from encoding this character?

推荐答案



这篇关于Antixss GetSafeHtmlFragment编码&作为& amp;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 12:35