Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

URGENT- How to make page open in IE ONLY???

Status
Not open for further replies.

kdd

IS-IT--Management
Feb 11, 2002
3
IT
Hi -

I'm in an emergency situation having to produce a CD with websites including flash. Everything has to run off-line, so I have a problem with Netscape Flash Player installer wanting to go online before completing the install.

I'm thinking about how I can make the websites open in Internet Explorer no matter what the default browser is set to be, as there's no problem installing Flash Player for IE off-line.
 
I could've sworn I just answered this question a few minutes ago! Oh well, guess my school PC is acting up again...
Here we go again:
You can have a browser redirect script on you're HTML pages, like this:

<SCRIPT>
if(navigator.appName==&quot;Internet Explorer&quot;)
location=&quot;else
alert(&quot;Sorry, you need IE to view this site!&quot;);
</SCRIPT>

You would need to place this on all HTML page for this, or place this in an external JS file and call it on all HTML pages...
ok?? I have not failed; I merely found 100,000 different ways of not succeding...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top