Jaish Mathews
Jaish Mathews

Reputation: 864

Blazor Server - How launch IE browser from client machine

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

Answers (1)

Vy Do
Vy Do

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://www.computerworld.com/article/3008858/how-to-open-specific-web-browsers-using-hyperlinks.html

https://learn.microsoft.com/en-us/windows/uwp/launch-resume/launch-default-app

Upvotes: 1

Related Questions