For one section of the site I would like to get rid of the action and only have the ID’s
I have a RSVP dataObject that I use as pages, I can set it up as a holder/details page, what would make the url www.mysite/rsvp/details/1234
but because I do not need a holder’s page with all available rsvp so I would like to get rid of the action in the url so the url would be www.mysite/rsvp/1234.
I know I could move all the rsvp control functions into the general Page_Controller and make a rsvp action there, but I would like to keep it into a separate class if possible.
Anybody knows how to go about that?