I am Redirecting my Action to another urls woth optional parameter and passing variable to the controller
RedirectToAction("action", new { a, c, s,ds});
but my urls loosk like this
http://localhost:8080/contoller/action?a=1&c=2&s=3&ds=4
but when i directly call teh action the url looks like this
http://localhost:8080/contoller/action/1/2/3/4
how can i get the same url with redirect ..any suggestion