Hi,
I've a code block to open a given URL in default browser. I've problem opening URLs with parameters in IE, When the default browser is FireFox it works fine, but it seems that IE is removing those parameters!!! Any other way to solve this problem?
Code I am using is:
Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler \"" + url + "\"");
I've problem with URLs like "...test.html?param1=val1¶m2=val2" in IE
Thanks,
Rakesh.A