I am trying to pass a query string parameter from one controller to another using the RedirectToAction method.
However, my parameter name is something like "abc.Key", but I cannot specify such a value for RedirectToaction, as it gives me an error.
My RedirectToAction now looks like this:
return RedirectToAction("Pending", "SimpleController",
new { area = "Area1", Activities.ActivityGroupKey=qstring });
I searched a lot to understand how this can be done, but not bear fruit.
source
share