标签:行修改 serve bsp shadow file 取值 方式 cookie style
Value Shadowing(不明確的方式存取变量)
前人挖坑,后人填坑啊...
项目中大片都是采用 Request["qqfile"] 获取变量的值。 当然这真的没什么问题, 但是客户通过软件进行检测, 要求进行修改。
作为外包公司的小喽啰, 客户就是上帝。
解决方案:
避免使用:
Request[string key]
应根据情况,使用如下取值方式:
Request.Form[]
Request.QueryString[]
Request.Cookies[]
Request.ServerVariables[]
标签:行修改 serve bsp shadow file 取值 方式 cookie style
原文地址:http://www.cnblogs.com/duanbiflying/p/7662193.html