I have a rewrite rule:
<rule name="rule 18X" stopProcessing="true">
<match url="^cheap-calls/(.+)/(.+)/$" ignoreCase="true" />
<action type="Rewrite" url="CheapCalls.asp?calltype={R:1}&country={R:2}" />
</rule>
When I access /cheap-calls/landline/Hong%20Kong/
and try to get a country value from url Request.QueryString("country")
it gives me only HongKong
. Why it removes the space?