I've got an ASP.NET MVC site up and running, but need to make one slight change to it - but don't know how to approach it.
I've got a URL that looks like http://server/Oracle/Details/234342 - which displays information about customer number 234342.
Now I want to change the URL to this: http://server/Oracle/Details/234342?debug=1. I want to pick up the fact that debugging has been enabled to print out more info (like loadtime etc) on the webpage.
How do I accomplish this? I tried changing the default route, but then I ended up with http://server/Oracle/Details/234342/1 - which works, but isn't how I want my URL to look.