想要获取URL栏中的字符串,于是敲下代码如下:
string other = HttpContext.Current.Request.ServerVariables("QUERY_STRING");
结果报错:Request.QueryString 不能像使用方法那样使用不可调用
解决方法:将圆括号“()”改为方括号“[]"
string other = HttpContext.Current.Request.ServerVariables["QUERY_STRING"];
时间: 2024-10-12 18:09:48