如何在mvc视图中获取路由和查询字符串值

时间:2011-11-07 10:11:48

标签: model-view-controller view

如果我有这个网址:

http://stackoverflow.com/question/ask?type=great

如何最经济地获取View中的完整路径和查询字符串值,例如

/question/ask?type=great

2 个答案:

答案 0 :(得分:1)

如果您想从View中访问它,可以使用httpcontext

像这样:

@HttpContext.Current.Request.Path

答案 1 :(得分:0)

您可以在控制器中设置操作方法,以自动为您解析查询字符串。你不需要对你的路线做任何事情。

get query string values in mvc