C# 中对COOKIES的操作
HttpUtility.UrlDecode
HttpUtility.UrlEncode
HttpContext.Current.Request.Cookies["UserCode"].Value HttpContext.Current.Response.Cookies["UserCode"].Value = HttpUtility.UrlEncode(value)
C# 中对COOKIES的操作HttpUtility.UrlDecode
HttpUtility.UrlEncode
HttpContext.Current.Request.Cookies["UserCode"].Value HttpContext.Current.Response.Cookies["UserCode"].Value = HttpUtility.UrlEncode(value)
|