I am working on a MVC application that needs to open a specific URL in Internet Explorer. It works fine when the user is using IE but if the user is using Chrome or Mozilla, window.open uses that browser, as expected since it is most likely the default browser.
Is there any way to force window.open to use IE? The page has to be opened in IE and isn't an option to use another browser.
If there isn't any way to do it using window.open, then is it possible to do another way?