摘要:
1/**//// 2/// HTML encode 3/// 4/// string 5/// 6public static string Encode(string str) 7{ 8 str = str.Replace("&","&"); 9 str = str.Replace("'","''");10 str = str.Repla... 阅读全文
posted @ 2006-03-19 13:25
多铭
阅读(185)
评论(0)
推荐(0)