How can I modify just the value of a specific QueryString parameter if it is equal to a specified value, using a rewrite rule? I only want to change this value, and do not want to affect the rest of the url or any other query string parameters.
eg. If query string parameter ID = '123' then I want to rewrite the value as 'abc'
And this should work regardless of the form of the URL:
http://mysite/page.aspx?ID=**123** should resolve to http://mysite/page.aspx?ID=**abc**
http://mysite/?ID=**123** should resolve to http://mysite/?ID=**abc**
http://mysite/page.aspx?name=bob&ID=**123** should resolve to http://mysite/page.aspx?name=bob&ID=**abc**
http://mysite/page.aspx?name=bob&ID=**123**&age=33 should resolve to http://mysite/page.aspx?name=bob&ID=**abc**&age=33