I really like the IIS7 URL rewriting module and so far, it worked great for me.
There is one thing that I'm not sure how to do: I would like to permanently redirect all URLs that have encoded spaces (%20) in them to a URL that has the spaces replaced with a dash (-).
So this:
http://www.test.com/About%20Our%20Mission.aspx
should be redirected to this:
http://www.test.com/About-Our-Mission.aspx
Is that even possible with only regular expressions?