When I click a link, I want to choose a browser to open only for that link?
Is it possible to make a mini program for this aim with c#?
Do you have any idea?
For example for Firefox there is an add-ons which is called Open With.
But I should make it from Chrome, IE, Firefox even Safari..
Note: I did not decide which tags should I use..
System.Diagnostics.Process.Start("browserChoice.exe", "http://stackoverflow.com"You can find the install path for the various browsers by using the registry. Then it’s a case of using the above call with the URL you want.
EDIT: This assumes you’re NOT in ASP.NET! You cannot control what browser a user uses in a web page