我为特定控制器构建了一个 url:
var f = new System.UriBuilder( Request.Url.AbsoluteUri ) {
Path = Url.Action( "Get", "People")
};
它返回
http://localhost/myApp/People/Get
好的。
将查询字符串添加到该 url 的最佳方法是什么?
方法
http://localhost/myApp/People/Get?id=7
我要处理:
string path = string.Concat(f.ToString(), "?id=3");
但我想知道是否有其他方式(比我上面提供的更好)将查询字符串附加到该 URL。