摘要: 看看我 Request.QueryString[key]、Request.Form[key]默认都会调用函数HttpUtility.UrlDecode(str, encoding),如果HTTP请求的数据只经过一次编码,无需再调用解码函数。 Request.Cookies[key]没用调用解码函数, 阅读全文
posted @ 2021-04-15 17:41 vvull 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 看看我 using System; using System.Collections.Generic; using System.IO; using System.Security.Cryptography; using System.Text; namespace 加密 { class Progr 阅读全文
posted @ 2021-04-15 15:20 vvull 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 在Web.config添加以下配置 <configuration> <system.web> <httpRuntime maxQueryStringLength="2097151" /> </system.web> <system.webServer> <security> <requestFilt 阅读全文
posted @ 2021-04-15 09:27 vvull 阅读(159) 评论(0) 推荐(0) 编辑