I am creating a web application in asp.net. In that i have used window.Open to open new page in another window. what i want is when this window is fired, it should only get open in IE. even though the user is using that in crome, firefox or any other browser
window.open("http://www.google.com")
This is impossible.
Browsers do not allow webpages to launch arbitrary applications on the user’s system (and there is no specific “launch IE” feature either … nor is there likely to be one in the future – browser vendors aren’t in the business of making it easy for authors to move their users to competitors!).
Even if they did, not all systems have Internet Explorer available.
Design a web application instead of an Internet Explorer application.