How would I handle something like the below uri using ASP.NET MVC's routing capability:
http://localhost/users/{username}/bookmarks/ - GET
http://localhost/users/{username}/bookmark/{bookmarkid} - PUT
Which lists the bookmarks for the user in {username}.
Thanks