I am trying to pass a query string parameter from one controller to another through RedirectToAction method.
However, my parameter name is something like "abc.Key" but I am not being able specify such a value to RedirectToaction as it gives me error.
My RedirectToAction currently looks like this:
return RedirectToAction("Pending", "SimpleController",
new { area = "Area1", Activities.ActivityGroupKey=qstring });
I searched a lot to figure out how it can be done but to no fruits.