In get action method i'm returning view and passing model to it.
return View("MyView", model);
Then i get required view with model details in url.
host:/response?id=1&otherId=2 ...
I want to have next url:
host:/response
How to get it? Or how to map route the way i wanted?