C#get URL查询字符串Request.QueryString不起作用

时间:2014-08-11 19:49:57

标签: c# asp.net

我有一个像api/getListItems?data=false

这样的网址

我如何获取查询参数数据?我尝试使用Request.QueryString,但是我收到错误'找不到类型或命名空间名称'请求'我安装了System.Web引用,版本是4.0.0.0,.NET Framework是4.5 ...有什么我想念的吗?

谢谢,

2 个答案:

答案 0 :(得分:1)

这是我从querystrig读取数据的方式:

bool Data = Boolean.Parse(System.Web.HttpContext.Current.Request.QueryString["data"]);

答案 1 :(得分:0)

你也可以这样做:

string url = HttpContext.Current.Request.Url.AbsoluteUri;

String data= url.Split('?')[1].Split('=')[1];

感谢