Say you have a page that provides a list of songs depending on some identifier you have specified, such as a category it belongs to. You may have your URL formatted like so:
http://mysite.com/songs/view/1
Now lets say you wanted to add paging, what is the best way to structure that URL and how does the action method work? I am assuming something like this is incorrect
http://mysite.com/songs/view/1/page/2
Thanks