Reputation: 864
I have new Blazor Server application running in EDGE, which need to launch another old application in IE. How we can launch IE browser with a URL from Blazor Server application running in client machine? I used JavaScript previously during asp.net time with window.open. But there's no guarantee that IE going to open with window.open()
Upvotes: 0
Views: 354
Reputation: 52576
Use
<A HREF="microsoft-ie:http://www.itworld.com/blog/readme-file">Open README file with IE</A>
Learn more:
<A HREF="microsoft-edge:http://www.itworld.com/blog/readme-file">Open README file with Edge</A>
https://stackoverflow.com/a/53958628/3728901
https://learn.microsoft.com/en-us/windows/uwp/launch-resume/launch-default-app
Upvotes: 1