标签: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