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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you make people with Netscape not be allowed to veiw a page?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
How do you make people with Netscape not be allowed to veiw a page?<br><br>How do you make the browser go back to the last page veiwed if bowser is not Internet Explorer (any version)
 
If you can run Perl scripts, it might be a little easier to redirect than JavaScript and it would work with all browsers - not just those supporting JavaScript.&nbsp;&nbsp;I am using such a script on one of my sites and a simple search of the Internet should find one for you too.
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I think that you can get the name of the browser by<br>using navigator.appName&nbsp;&nbsp;&nbsp;( you can get the version<br>with navigator.appVerson) .&nbsp;&nbsp; <p>Jim Carlson<br><a href=mailto:nx56@inetarena.com>nx56@inetarena.com</a><br><a href= > </a><br>oracle, vb, some javascript
 
check this out:<br><br>&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;<br>function checkAndRedirect(){<br>agent=navigator.userAgent.toLowerCase();<br><br>ns = ((agent.indexOf('mozilla')!=-1) && ((agent.indexOf('spoofer')==-1) && (agent.indexOf('compatible') == -1)));<br><br>if (ns) location.go(-1);<br>else return;<br>}checkAndRedirect();<br>&lt;/script&gt;<br><br>insert that just under the &lt;head&gt; and &lt;title&gt;&lt;/title&gt; tags, and you should be fine.<br><br><br><br><br><br><br> <p>theEclipse<br><a href=mailto:eclipse_web@hotmail.com>eclipse_web@hotmail.com</a><br><a href=robacarp.webjump.com>robacarp.webjump.com</a><br>**-Trying to build a documentation of a Javascript DOM, crossbrowser, of course. E-mail me if you know of any little known events and/or methods, etc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top