I have in a variable my query string
string queryString="tri=2&dd=3&order=4&.."
I need to redirect to action with my query string:
return RedirectToAction("Index", "call" new {queryString});
but i'm redirected to call/index/queryString=tri=2&dd=3&order=4&..
I need to be redirected to :
call/index/tri=2&dd=3&order=4&.. how can I do this please?
regards