web开发中处理特殊符号(&)随笔

1, oracle数据库查询:

select  * from job where name = 'Special character ' || chr(38) || ' test'


2, MVC Url:

配置文件中添加:

<system.web>

 <httpRuntime requestPathInvalidCharacters="" />    

 <pages validateRequest="false">

</system.web>


3, c# XML中:

string xmlContent  = stringBuilder.ToString();

xmlContent = xmlContent .Replace(@"&", @"&amp;");


你可能感兴趣的:(web开发中处理特殊符号(&)随笔)