码迷,mamicode.com
首页 > Web开发 > 详细

.Net HttpContext.Current.Request 常用处理方案

时间:2017-12-27 17:54:20      阅读:376      评论:0      收藏:0      [点我收藏+]

标签:set   request   name   class   bsp   readonly   div   bin   http   

 

1、清理request的请求数据

PropertyInfo isreadonly =typeof(System.Collections.Specialized.NameValueCollection).GetProperty("IsReadOnly", BindingFlags.Instance | BindingFlags.NonPublic);
// make collection editable
isreadonly.SetValue(HttpContext.Current.Request.QueryString, false, null);

foreach (var key in HttpContext.Current.Request.QueryString.AllKeys)
{
HttpContext.Current.Request.QueryString.Set(key, HttpContext.Current.Request.QueryString[key].Split(‘,‘).First());
//HttpContext.Current.Request.QueryString[key] = HttpContext.Current.Request.QueryString[key].Split(‘,‘).First();
}
isreadonly.SetValue(HttpContext.Current.Request.QueryString, true, null);

.Net HttpContext.Current.Request 常用处理方案

标签:set   request   name   class   bsp   readonly   div   bin   http   

原文地址:https://www.cnblogs.com/ransom/p/8126100.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!