When I try redirect to another page with more than 1 parameter in querystring I get an error.
This works:
<rule name="t6" stopProcessing="true">
<match url="^test.html$" />
<action type="Redirect" url="mypage.aspx?param=1" redirectType="Permanent" />
</rule>
This doesn't work:
<rule name="t6" stopProcessing="true">
<match url="^test.html$" />
<action type="Redirect" url="mypage.aspx?param=1¶m2=2" redirectType="Permanent" />
</rule>
Can you figure what's happening?
Thanks,
Armando