C# ile Varsayılan Tarayıcıyı (Default Browser) Açmak
January 14th, 2009 — 11:47pm
Aşağıdaki kod registry den bakıp varsayılan tarayıcıyı bulur ve onunla bir url açar
RegistryKey registryKey = Registry.ClassesRoot.OpenSubKey(@"htmlfileshellopencommand", false); string defaultBrowserPath = ((string)registryKey.GetValue(null, null)).Split('"')[1]; Process.Start(defaultBrowserPath, "http://www.serdarb.com");




