I'm stressing out trying to create a url rewriter.net rule for my web site.
I have a link
http://localhost/Pages/CategoryList.aspx?ID=2&Page=1
And I want replace it by this
http://localhost/Category/2.aspx?Page=1
I tried the following:
<rewrite url="~/Category/(.+).aspx?Page=(.+)" to="~/Pages/CategoryList.aspx?ID=$1&Page=$2" />
But it didn't work.
Can anybody help me?