一聚教程网:一个值得你收藏的教程网站

热门教程

替换HTML代码

时间:2022-07-02 18:06:38 编辑:袖梨 来源:一聚教程网

将一些HTML替换掉
eg:
strContent=strContent.Replace("&","&");
strContent=strContent.Replace("'","''");
strContent=strContent.Replace("<","<");
strContent=strContent.Replace(">",">");
strContent=strContent.Replace("chr(60)","<");
strContent=strContent.Replace("chr(37)",">");
strContent=strContent.Replace(""",""");
strContent=strContent.Replace(";",";");
strContent=strContent.Replace(" ","
");
strContent=strContent.Replace(" "," ");
return strContent;

热门栏目