我想从asp.net中的网址获取数据。我需要数据为字符串,然后可以在其他代码中使用它。

http://example.com/service_name/videos/?category={0}&offset={1}&maxResult={2}

我需要类别偏移量和maxresults数。
谁能帮我?

最佳答案

string category = Request.QueryString["category"];
string maxResult = Request.QueryString["maxResult"];

09-11 20:33