I need to do a default browser launch with standard search. The default search is what happens when you enter search terms in the URL navigation text box. For example, in Chrome and Firefox, entering puppies in the nav text box by default will lead you to Google results for puppies. In IE, it will do the same, only on Bing.
You can usually invoke the default browser by simply doing something like:
Process.Start("http://google.com");
But I cannot assume that the default search provider is Google.
Is there a way to trigger this behavior through C #? The only thing I can do is try to determine which browser is the default, and then execute it directly with the search terms.
Does anyone know any other (preferably a simpler) way?
Update: Just found the code to find the default browser here .
source share