setting query string in redirecttoaction in asp.net mvc

三世轮回 提交于 2019-12-18 04:16:20

问题


I have to do a redirecttoaction call in asp.net mvc view with varying params, extracted from the referrer page of the view (the status of a grid).

I have (in an hidden field) the content of the query string (sometimes empty, sometimes with 2 parameters and so on), so I have problems to create the route values array.

Are there some helpers, that help me to convert a query string a route values array? Something like:

string querystring ="sortdir=asc&pag=5";
return RedirectToAction( "Index", ConvertToRouteArray(querystring));

回答1:


To create a generic solution convert your querystring to a Dictionary and at the dictionary to the RouteValueDictionary.

var parsed = HttpUtility.ParseQueryString(temp); 
Dictionary<string,object> querystringDic = parsed.AllKeys
    .ToDictionary(k => k, k => (object)parsed[k]); 

return RedirectToAction("Index", new RouteValueDictionary(querystringDic)); 



回答2:


One limitation of using RedirectToAction("actionName", {object with properties}) is that RedirectToAction() has no overload which accepts RedirectToAction(ActionResult(), {object with properties}), so you are forced to use magic strings for the action name (and possibly the controller name).

If you use the T4MVC library, it includes two fluent API helper methods (AddRouteValue(...) and AddRouteValues(...)) which enable you to easily add a single querystring parameter, all properties of an object, or the whole Request.QueryString. You can call these methods either on T4MVC's own ActionResult objects or directly on the RedirectToAction() method. Of course, T4MVC is all about getting rid of magic strings!

As an example: suppose you want to redirect to a login page for a non-authenticated request, and pass the originally requested URL as a query string parameter so you can jump there after successful login. Either of the following syntax examples will work:

return RedirectToAction(MVC.Account.LogOn()).AddRouteValue(@"returnUrl", HttpUtility.UrlEncode(Request.RawUrl));

or

return RedirectToAction(MVC.Account.LogOn().AddRouteValue(@"returnUrl", HttpUtility.UrlEncode(Request.RawUrl)));


来源:https://stackoverflow.com/questions/12180387/setting-query-string-in-redirecttoaction-in-asp-net-mvc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!