码迷,mamicode.com
首页 > 其他好文 > 详细

Request.QueryString 不能像使用方法那样使用不可调用

时间:2014-12-15 10:16:33      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   使用   sp   on   div   

想要获取URL栏中的字符串,于是敲下代码如下:

string other = HttpContext.Current.Request.ServerVariables("QUERY_STRING");

结果报错:Request.QueryString 不能像使用方法那样使用不可调用

解决方法:将圆括号“()”改为方括号“[]"

string other = HttpContext.Current.Request.ServerVariables["QUERY_STRING"];

 

Request.QueryString 不能像使用方法那样使用不可调用

标签:style   blog   http   ar   color   使用   sp   on   div   

原文地址:http://www.cnblogs.com/Vennet/p/4164166.html

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