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
instead of:
http://example.com/products/item.aspx?id=2
I'd like to do the same for sender as well, here's the current URL:
http://example.com/products/item.aspx?id=2&sender=1
How do I accomplish both with C# in ASP.NET MVC?