I've been taking URL arguments in ASP.NET like so:
www.mysite.com/thread.php?id=123
However, I'd like to use the cleaner method that you often see which looks like:
www.mysite.com/thread/123
How can I do this (get the arguments) in ASP.NET? What's the usual procedure for setting up a system like this?