How can we handle urls that include ? and & using URI?
The URI will not accept: /Merchant2/merchant.mvc?Screen=SFNT&Store_Code=WL
I've tried: %3F for the ? and %26 for the & resulting in /Merchant2/merchant.mvc%3FScreen=SFNT%26Store_Code=WL
Placing this string in a browser works and the URI will accept it. But it will not redirect it correctly.
The URI will not accept: /Merchant2/merchant.mvc?Screen=SFNT&Store_Code=WL
I've tried: %3F for the ? and %26 for the & resulting in /Merchant2/merchant.mvc%3FScreen=SFNT%26Store_Code=WL
Placing this string in a browser works and the URI will accept it. But it will not redirect it correctly.
Comment