I\'d like to send multiple parameters to an action in ASP.NET MVC. I\'d also like the URL to look like this:
http://example.com/products/item/2
you can use any route rule for example:
{controller}/{action}/{param1}/{param2}
also you can use get params like :baseUrl?param1=1¶m2=2
:baseUrl?param1=1¶m2=2
and check this link, i hope it will help you.