I need to pass a querystring back on response - so that via means of jQuery I can do something with it.
something like this: return RedirectToAction("LogOn", "Account", new { id = "?action=update" });
URL needs to end up like: ../Account/LogOn/?action=update
but the above code produces this instead: ../Account/LogOn/%3faction%3dupdate
I don't want the encoding...
Help?