Mark Lalor
Mark Lalor

Reputation: 7887

Interact with program from site (like iTunes)

There are iTunes links that will open up and app or an album in iTunes from a link in a web browser.

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

Upvotes: 4

Views: 240

Answers (1)

SLaks
SLaks

Reputation: 887195

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

MSDN documents this, including a C# example.

Upvotes: 6

Related Questions