Hi,
I'm having an issue with ampersands in a URI string.
I'm trying to build a URI by:
string href = "www.something. com/?=" + var1 + "&" + var2;
webBrowser1.nav igate(new Uri (href));
But href ends up being www.something.c om/?=var1var2 without the ampersand.
What can I do to make this work?
Thanks.
I'm having an issue with ampersands in a URI string.
I'm trying to build a URI by:
string href = "www.something. com/?=" + var1 + "&" + var2;
webBrowser1.nav igate(new Uri (href));
But href ends up being www.something.c om/?=var1var2 without the ampersand.
What can I do to make this work?
Thanks.
Comment