vote up 0 vote down star

I am developing a web browser in c#.. i need to give option to the user for my web browser as set to Default browser??? how is it possible

flag

2 Answers

vote up 1 vote down

On Windows check out this Registry key:

HKEY_CLASSES_ROOT\HTTP\shell\open\command

There's also HTTPS too. You'd ideally want to check this is set to your application and if not then ask to set it.

link|flag
1  
...and not least to provide an option so the user can disable the automatic check for default browser. – Fredrik Mörk Jun 23 at 11:10
vote up 1 vote down

You need to set the registry key HKEY_CURRENT_USER\Software\Clients\StartMenuInternet\(Default). Or HKEY_LOCAL_MACHINE if you want it to affect the entire machine (in which case you may need to set the HKCU version too or it will override).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.