例如我在页面上http://localhost:1338/category/category1?view=list&min-price=0&max-price=100
在我看来,我想呈现某种形式
@using(Html.BeginForm("Action", "Controller", new RouteValueDictionary { { /*this is poblem place*/ } }, FormMethod.Get))
{
<!--Render some controls-->
<input type="submit" value="OK" />
}
我想要的是view
从当前页面链接获取参数值以使用它来构造表单获取请求。我试过@using(Html.BeginForm("Action", "Controller", new RouteValueDictionary { { "view", ViewContext.RouteData.Values["view"] } }, FormMethod.Get))
了,但没有帮助。