摘要:
一、HttpUtility.UrlEncode 方法 1、public static string UrlEncode(byte[]) 将字节数组转换为已编码的 URL 字符串。 2、public static string UrlEncode(string) 对 URL 字符串进行编码。 3、pu 阅读全文
摘要:
一、无子键或单级cookie 读写(1)、写入: 第一种 HttpCookie cookie=new HttpCookie("User"); cookie.Value="admin"; cookie.Expires=DateTime.Now.AddMinutes(1000); HttpContext 阅读全文