473,756 Members | 1,808 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Check if browser is NOT I.E.

On a page optimised for IE, I'd like to check if the browser type is other
than IE, so I can direct them to another page.

How can I modify the code below to redirect to indextext.asp if they aren't
using IE? I've tried changing the = for <>, but get a syntax error.

Thanks

USER_AGENT = Request.ServerV ariables("HTTP_ USER_AGENT")
IS_IE = InStr(USER_AGEN T,"MSIE")
if IS_IE then
response.redire ct "indextext. asp"
end if
Jul 19 '05
15 8349
<iframe> perhaps?

Bob Lehmann

"Peter Foti" <pe***@Idontwan tnostinkingemai lfromyou.com> wrote in message
news:10******** *****@corp.supe rnews.com...
"Bob Lehmann" <no****@dontbot herme.zzz> wrote in message
news:ue******** *****@TK2MSFTNG P11.phx.gbl...
writing semantically correct code that can be displayed in all web browsers.
To do that, you would be stuck with HTML 3.2, unless you determined the
browser. Semantically correct code for NS7 may not work in NS4.x.


Huh?!!! What in the world are you talking about?! Semantically correct
code is far more likely to work in NS4 than not. Can you give me an

example of where this is not true?

The closest I will ever come to browser sniffing is hiding my CSS from NS4
and letting it apply it's default presentation to semantically correct HTML, since NS4 doesn't properly implement CSS. But this is NOT browser sniffing.
Peter Foti

Jul 19 '05 #11
"David" <da***@brown666 9.freeserve.co. uk> wrote in message
news:OK******** *****@newsfep3-gui.server.ntli .net...
Other points:- what on earth is "Browser sniffing"? I got the code from this forum in the first place in answer to a question on how I can direct
visitors to pages optimised for their browser, and that is exactly what I
use the code for. Why on earth is directing visitors to pages designed for
their browser a bad thing????????


Excellent points by Jenny and Dave. I agree with them... if you write
universally compatible code (coding to standards and validating with a
validator), you will be much better off, and your pages will be more
accessible. People with disabilities shouldn't be prevented from accessing
the same content as everyone else because they are using an aural browser
and not IE.

"The power of the Web is in its universality. Access by everyone regardless
of disability is an essential aspect."
-- Tim Berners-Lee, W3C Director and inventor of the World Wide Web

Regards,
Peter Foti
Jul 19 '05 #12
"Bob Lehmann" <none> wrote in message
news:el******** ******@TK2MSFTN GP11.phx.gbl...
<iframe> perhaps?


<IFRAME src="foo.html" width="400" height="500"
scrolling="auto " frameborder="1" >
[Your user agent does not support frames or is currently configured
not to display frames. However, you may visit
<A href="foo.html" >the related document.</A>]
</IFRAME>

This is the W3 recommended method. It's entirely backwards compatible.
Users that have an obsolete browser, or a browser that doesn't support
frames can still get to the content.

What else ya got? :)

Peter
Jul 19 '05 #13
ok, sorry I misunderstood your problem,

try:
if not IS_IE then
response.redire ct "indextext. asp"
end if
The line IS_IE = InStr(USER_AGEN T,"MSIE") sets the variable IS_IE to the
results of the InStr function. the <> operator is a conditional operator,
meaning it can only be used only be used in conditional statements (Like the
IF statement) and cannot be used to set the value of a variable.

Lance


"David" <da***@brown666 9.freeserve.co. uk> wrote in message
news:OK******** *****@newsfep3-gui.server.ntli .net...

"Lance Wynn" <la********@N.O .S.P.A.M.hotmai l.com> wrote in message
news:%2******** **********@TK2M SFTNGP11.phx.gb l...
The code you posted works fine on my machine, what specific syntax error are
you receiving?


The code I posted does work for detecting if it's IE - what I want to do

is modify it to redirect the visitor to a different page if they are using a
browser other that IE. If I change the = sign to <> (as below) , the browser comes up with "Syntax error" and points to the <>.

Other points:- what on earth is "Browser sniffing"? I got the code from this forum in the first place in answer to a question on how I can direct
visitors to pages optimised for their browser, and that is exactly what I
use the code for. Why on earth is directing visitors to pages designed for
their browser a bad thing????????

Thanks,

David

USER_AGENT = Request.ServerV ariables("HTTP_ USER_AGENT")
IS_IE <> InStr(USER_AGEN T,"MSIE")
if IS_IE then
response.redire ct "indextext. asp"
end if

Jul 19 '05 #14
nonsense.

what about capabilities or lack. I have a web-based application I support
that uses client-side VBscript. I need to check the user is browsing with
IE. Also, the same app has a page with three horizontal frames, the middle
of which is composed of two vertical frames... Netscape doesn't like it, but
I need to check otherwise the user sees a load of rubbish.

not interested in the "my browser is better than your brower" argument. The
app is designed for IE and not interested in supporting any other. The
number of users this affects is tiny.
"Peter Foti" <pe***@Idontwan tnostinkingemai lfromyou.com> wrote in message
news:10******** *****@corp.supe rnews.com...
"David" <da***@brown666 9.freeserve.co. uk> wrote in message
news:5q******** ******@newsfep3-gui.server.ntli .net...
On a page optimised for IE, I'd like to check if the browser type is other than IE, so I can direct them to another page.

How can I modify the code below to redirect to indextext.asp if they aren't
using IE? I've tried changing the = for <>, but get a syntax error.


I hope this is not for a public website... browser sniffing is bad

practice.
Peter Foti

Jul 19 '05 #15
"UncleWobbl y" <he***@talk21.c om> wrote in message
news:40******** *************** @lovejoy.zen.co .uk...
nonsense.

what about capabilities or lack. I have a web-based application I support
that uses client-side VBscript. I need to check the user is browsing with
IE. Also, the same app has a page with three horizontal frames, the middle
of which is composed of two vertical frames... Netscape doesn't like it, but I need to check otherwise the user sees a load of rubbish.

not interested in the "my browser is better than your brower" argument. The app is designed for IE and not interested in supporting any other. The
number of users this affects is tiny.


I'm not arguing any browser is better than another. In the case of using
VBScript on a public website... I think it's a bad idea, and I personally
would not do it (since there is only 1 browser that supports it). If it was
for an intranet application, where you have more control over how the app is
accessed... well, that's a different story.

In your case, the mistake is not browser sniffing... it's relying on client
side scripting as part of your primary content (and even worse, using a
scripting language that is only supported by 1 browser). Personally, I
would only rely on client side scripting for non-critical things, like bells
and whistles. So whether you use Javascript or VBScript, I think you're
making a mistake if you require it (though it may be that your particular
site does not care about accessibility.. . depends on your target audience I
suppose). There are better alternatives.

Regards,
Peter Foti

Jul 19 '05 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
3188
by: TG | last post by:
This is more of a pain than I thought it would be. I need a simple code segment to determine whether a browser accepts cookies or not. When I pass variables between pages when cookies are turned off, the global variables are empty between pages, fine, that tells me cookies store the global variables - right? I store the values in $_session and when cookies are turned on values are passed between web pages - I can see these values in fields...
4
1901
by: mike parr | last post by:
I'm trying to do a check to see if the client browser has cookies enabled. But my code below always gives me the value for acceptsCookies = true, whether the machine has cookies enabled or not. Can anybody help me out with this? private void Page_Load(object sender, System.EventArgs e) { if (!(Page.IsPostBack))
5
3176
by: David Baker | last post by:
Hi all I am very new to ASP.Net. I am trying to create a sniffer for our program. We want our users to click our sniffer and hopefully the sniffer will check their computer against our requirements. I would like to ask experts like you to see which items are actually doable with ASP.Net. Below I listed all of the items we are looking for but I can understand if some of the items are impossible to check/sniff. We would like to create a sniffer...
0
905
by: Ayaz | last post by:
Hi All, I need to check the browser (IE) cookie permission, i.e. whether it is possible to create and read a cookie. I need to do that from a VB.NET winform application. For that, I have to create an in-memory cookie, store some value in it and read it back. Could anyone please suggest me a way to do that.
22
2303
by: petermichaux | last post by:
Hi, I would like to display a message to Internet Explorer clients to encorage them to get Firefox. Yes they may like Internet Explorer but it is my site :) http://www.explorerdestroyer.com/ uses navigator.userAgent If ((ua.indexOf('msie') != -1) && (ua.indexOf('opera') == -1) &&
6
2409
by: =?Utf-8?B?YzY3NjIyOA==?= | last post by:
Hi all, I am thinking about doing this since I got several cases that some of our internal users open more than one browser at the same time from our server. When one of the transactions was not completed finished, the second browser jusk pick up some session variables from the first browser and process right after that. It messed up everything. I was thinking about use remote_addr, but it seems not working since we are behind the...
11
1765
by: Anshul | last post by:
How can I check the current working browser from server side scripting or from HTML other than javascript. Can any body help. I dont want to use javascript to check the current working browser. Thanks
1
4544
by: ilaxi kandoliya | last post by:
Hi, I have developing project with asp.net 2.0 (C#) I have used java script function in my code but if User's browser is java script disable then its not working properly so how to check Browser is java script enable or not and how to restrict user to view java script include page if its browser javascript disable until he not change accordingly. It is urgent Thanks in advance.. Ilaxi
10
3261
by: Conrad Lender | last post by:
In a recent thread in this group, I said that in some cases object detection and feature tests weren't sufficient in the development of cross-browser applications, and that there were situations where you could improve the application by detecting the browser vendor/version. Some of the posters here disagreed. Since then, I've had to deal with a few of these cases; some of them could be rewritten to use object detection, and some couldn't....
11
2070
by: Patrick | last post by:
Trying this question again in a different way and expanding it to another newsgroup. Looking for how I would do this. For an html form; Say I have three check boxes A, B, and C . When I click on a checkbox a dropdown window will open next to it and the selections will be 1, 2, and 3. I want to use the same script and dropdown for each of the 3 check boxes and be able to return values independent of each other. Meaning if I check box A...
0
9456
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10034
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9872
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9843
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8713
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7248
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6534
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3805
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.