Is it possible to open an html page from silverlight web application in chrome/firefox ?
Issue is I have 3 broswers installed on my windows pc. 1.IE 2.Chrome 3.Firefox
I would like to open the html page from silverlight web application in Chrome and not in IE.
I am using following code to open the page.
HtmlPage.Window.Navigate(new Uri("Google.com")); // Opens in IE. But I want it to open in Chrome.
Thanks.