I need to open an html page in a new tab. And I can do that. But I also need to pass parameters in the uri as ENCODED.
Currently, I construct the string and encode it. Then I pass that string to the new Uri constructor. After construction, the encoded string is now DECODED which makes the page being invoked do the wrong thing.
How can I get new Uri to leave the parameters ENCODED?