Passing querystrings to RedirectToRouteResult (beside controller and action)

18.4k Views Asked by At

I have the following code:

var routeDictionary = new RouteValueDictionary {{"action", "Login"}, {"controller", "Persons"}};
filterContext.Result = new RedirectToRouteResult(routeDictionary);

That will produce "/Persons/Login"

How can I pass an aditional querystring to the previous code? so that it produces "/Persons/Login/?someQuerystring=someValue"

1

There are 1 best solutions below

0
On BEST ANSWER

Try this:

filterContext.Result = new RedirectToRouteResult(
    new RouteValueDictionary {
        { "action", "login" },
        { "controller", "persons" },
        { "someQuerystring", "someValue" }
    }
);