Interaction with the program from the site (for example, iTunes)

ITunes links appear that open, and the application or album in iTunes follows the link in your web browser.

How does it work and can I do it in a C # .NET application?

+4
source share
1 answer

iTunes registers the itms:// URI protocol in the registry and associates it with iTunes.exe.
The webpage then opens the itms:// link.

MSDN documents this , including a C # example.

+6
source

All Articles