473,387 Members | 1,844 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

What's wrong with the following code to capture the Browser type?

Hi, I need help badly. Can you do client-side programming instead of
server-side to capture the Browser type info? If this is the case,
what's wrong with the following?
<script language="JavaScript">
function doWord(file)
{

if (navigator.userAgent.indexOf("MSIE")!=-1)
{
var w = new ActiveXObject("Word.Application");
if (w != null)
{
w.Visible = true;

w.Documents.Open(file);

}
}
else
{
document.write(...)
}

}
</script>

but it doesn't work.
So I am wondering about what's wrong. Thanks for your advice.

Helena
Jul 20 '05 #1
10 3370
In article <9c*************************@posting.google.com> ,
he********@yahoo.com (Greener) writes:
Hi, I need help badly. Can you do client-side programming instead of
server-side to capture the Browser type info?
You can do it, reliably, neither on the server nor in the browser. Why does it
matter what browser I am using?
If this is the case, what's wrong with the following?
The major problem is you are relying on an unreliable string to attempt to
determine the browser.


<script language="JavaScript">
function doWord(file)
{

if (navigator.userAgent.indexOf("MSIE")!=-1)


Not sure how to object test for ActiveX, never tried to. And there is probably
a browser besides IE that will pass the following, but I am not sure:

if (document.all && document.getElementById &! window.opera){
alert('You might be using IE')
}

Perhaps a VBScript script instead, which is IE only (as far as I know):

<script type="text/vbscript">
//Not a single clue what would go here
</script>

None of which relies on what browser I am using.

http://www.jibbering.com/faq/#FAQ4_26

And links therein, to http://www.xs4all.nl/~ppk/js/support.html
--
Randy
Jul 20 '05 #2
Lee
Greener said:

Hi, I need help badly. Can you do client-side programming instead of
server-side to capture the Browser type info? If this is the case,
what's wrong with the following?
<script language="JavaScript">
function doWord(file)
{

if (navigator.userAgent.indexOf("MSIE")!=-1)
{
var w = new ActiveXObject("Word.Application");
if (w != null)
{
w.Visible = true;

w.Documents.Open(file);

}
}
else
{
document.write(...)
}

}
</script>

but it doesn't work.
So I am wondering about what's wrong. Thanks for your advice.


It should have some sort of error handling code in case w == null,
but other than that, it works for me. What do you mean when you
say "it doesn't work". What does it do, instead of opening Word?

Jul 20 '05 #3
"HikksNotAtHome" <hi************@aol.com> wrote in message
news:20***************************@mb-m11.aol.com...
In article <9c*************************@posting.google.com> ,
he********@yahoo.com (Greener) writes:
Hi, I need help badly. Can you do client-side programming
instead of server-side to capture the Browser type info?
You can do it, reliably, neither on the server nor in the
browser. Why does it matter what browser I am using?


I assume that was intended to start "you can not do it, . . . ".
If this is the case, what's wrong with the following?


The major problem is you are relying on an unreliable
string to attempt to determine the browser.

<script language="JavaScript">
function doWord(file)
{

if (navigator.userAgent.indexOf("MSIE")!=-1)


Not sure how to object test for ActiveX, never tried to.
And there is probably a browser besides IE that will pass
the following, but I am not sure:


Yes, Konqueror (so probably Safari), IceBrowser and Web Browser 2.0. In
fact I think that test probably only rules out Opera and Gecko browsers
as it seems to be common these days for non-IE browsers to be
implementing a document.all collection.
if (document.all && document.getElementById &! window.opera){
alert('You might be using IE')
}

<snip>

I would have thought that, since the desire is to call the ActiveXObject
constructor, the pertinent test would be for the existence of the
ActiveXObject constructor:-

if(window.ActiveXObject){
// new ActiveXObject can be called.
}
-or-
if(typeof ActiveXObject != 'undefined'){
// new ActiveXObject can be called.
}

Following the principal that you feature/object test as close to the
problem as possible.

However, with IceBrowser being an example of at least one browser that
has a fake ActiveXObject constructor it becomes very important to test
the object returned to ensure that it is an object. The OP's - if (w !=
null) - is a good start but it would also be worth checking that the
object has the methods and properties that the script wants to call (eg.
Documents.Open) in case the ActiveXObject constructor is a fake that
just returns a standard JavaScript object.

But then there are the ActiveX user preferences. My IE 6 will not allow
any scripting of ActiveX over the internet so even if it could be
determined by other means that the browser was IE 6 the script would
still not execute on it.

Just to add to the confusion, I recently read in a netscape.public.*
group of development work on ActiveX for windows Gecko browsers with a
new "GeckoActiveXObject" constructor. So maybe this script would not be
limited to just IE in the future. Though I got the impression that the
Gecko ActiveX support would be for custom ActiveX controls and not
Microsoft ones such a Word.Application.

Richard.
Jul 20 '05 #4
In article <bl*******************@news.demon.co.uk>, "Richard Cornford"
<Ri*****@litotes.demon.co.uk> writes:
You can do it, reliably, neither on the server nor in the
browser. Why does it matter what browser I am using?
I assume that was intended to start "you can not do it, . . . ".


I think I put too many negatives in there. You can do it, reliably, neither on
the server or in the browser:

You can't do it reliably.

Same thing. I got too verbose on myself :(

<--snip-->

I would have thought that, since the desire is to call the ActiveXObject
constructor, the pertinent test would be for the existence of the
ActiveXObject constructor:-

if(window.ActiveXObject){
// new ActiveXObject can be called.
}
-or-
if(typeof ActiveXObject != 'undefined'){
// new ActiveXObject can be called.
}


Thats what I was alluding to, but had no idea how to do it, never tried to :)
--
Randy
Jul 20 '05 #5
"HikksNotAtHome" <hi************@aol.com> wrote in message
news:20***************************@mb-m11.aol.com...
You can do it, reliably, neither on the server nor in the
browser. Why does it matter what browser I am using?
I assume that was intended to start "you can not do it, ... ".

I think I put too many negatives in there. You can do it,
reliably, neither on the server or in the browser:

You can't do it reliably.

Same thing. I got too verbose on myself :(

<snip>

Its not as if I don't do that myself more often than I should.
(or do I? ;-)

Richard.
Jul 20 '05 #6
First of all, thanks to all for the assistances!

When I meant it didn't work, I saw on the left bottom corner right
above the toolbar, "Error on Page", after i click a button to do the
following function.
Lee <RE**************@cox.net> wrote in message news:<bl********@drn.newsguy.com>...
Greener said:

Hi, I need help badly. Can you do client-side programming instead of
server-side to capture the Browser type info? If this is the case,
what's wrong with the following?
<script language="JavaScript">
function doWord(file)
{

if (navigator.userAgent.indexOf("MSIE")!=-1)
{
var w = new ActiveXObject("Word.Application");
if (w != null)
{
w.Visible = true;

w.Documents.Open(file);

}
}
else
{
document.write(...)
}

}
</script>

but it doesn't work.
So I am wondering about what's wrong. Thanks for your advice.


It should have some sort of error handling code in case w == null,
but other than that, it works for me. What do you mean when you
say "it doesn't work". What does it do, instead of opening Word?

Jul 20 '05 #7
Thanks a lot. I tried to insert the following piece of code to my code
in several possible places: if(window.ActiveXObject){
// new ActiveXObject can be called.
}
<script language="JavaScript">
function doWord(file)
{
if(window.ActiveXObject){
if (navigator.userAgent.indexOf("MSIE")!=-1)
{
var w = new ActiveXObject("Word.Application");
if (w != null)
{
w.Visible = true;

w.Documents.Open(file);

}
}
else
{
document.write(...)
}
}
}
</script>
It still didn't work. Should I also try the other way you mentioned?
That is,

if(typeof ActiveXObject != 'undefined'){
// new ActiveXObject can be called.
}
What went wrong? How to make it work? Bear with me and sorry for my
ignorance.

"Richard Cornford" <Ri*****@litotes.demon.co.uk> wrote in message news:<bl*******************@news.demon.co.uk>...
"HikksNotAtHome" <hi************@aol.com> wrote in message
news:20***************************@mb-m11.aol.com...
In article <9c*************************@posting.google.com> ,
he********@yahoo.com (Greener) writes:
Hi, I need help badly. Can you do client-side programming
instead of server-side to capture the Browser type info?


You can do it, reliably, neither on the server nor in the
browser. Why does it matter what browser I am using?


I assume that was intended to start "you can not do it, . . . ".
If this is the case, what's wrong with the following?


The major problem is you are relying on an unreliable
string to attempt to determine the browser.

<script language="JavaScript">
function doWord(file)
{

if (navigator.userAgent.indexOf("MSIE")!=-1)


Not sure how to object test for ActiveX, never tried to.
And there is probably a browser besides IE that will pass
the following, but I am not sure:


Yes, Konqueror (so probably Safari), IceBrowser and Web Browser 2.0. In
fact I think that test probably only rules out Opera and Gecko browsers
as it seems to be common these days for non-IE browsers to be
implementing a document.all collection.
if (document.all && document.getElementById &! window.opera){
alert('You might be using IE')
}

<snip>

I would have thought that, since the desire is to call the ActiveXObject
constructor, the pertinent test would be for the existence of the
ActiveXObject constructor:-

if(window.ActiveXObject){
// new ActiveXObject can be called.
}
-or-
if(typeof ActiveXObject != 'undefined'){
// new ActiveXObject can be called.
}

Following the principal that you feature/object test as close to the
problem as possible.

However, with IceBrowser being an example of at least one browser that
has a fake ActiveXObject constructor it becomes very important to test
the object returned to ensure that it is an object. The OP's - if (w !=
null) - is a good start but it would also be worth checking that the
object has the methods and properties that the script wants to call (eg.
Documents.Open) in case the ActiveXObject constructor is a fake that
just returns a standard JavaScript object.

But then there are the ActiveX user preferences. My IE 6 will not allow
any scripting of ActiveX over the internet so even if it could be
determined by other means that the browser was IE 6 the script would
still not execute on it.

Just to add to the confusion, I recently read in a netscape.public.*
group of development work on ActiveX for windows Gecko browsers with a
new "GeckoActiveXObject" constructor. So maybe this script would not be
limited to just IE in the future. Though I got the impression that the
Gecko ActiveX support would be for custom ActiveX controls and not
Microsoft ones such a Word.Application.

Richard.

Jul 20 '05 #8
Lee
Greener said:

First of all, thanks to all for the assistances!

When I meant it didn't work, I saw on the left bottom corner right
above the toolbar, "Error on Page", after i click a button to do the
following function.


If you're writing JavaScript in Internet Explorer, you should configure
it to show you the details of your errors. I don't use IE often enough
to know how to do that, myself.

Jul 20 '05 #9
"Lee" <RE**************@cox.net> wrote in message
news:bm********@drn.newsguy.com...
<snip>
If you're writing JavaScript in Internet Explorer, you should
configure it to show you the details of your errors. I don't
use IE often enough to know how to do that, myself.


The quick way to activate IE error messages is to wait until the little
yellow triangle shows up in the browser status bar, double click on it
and, when the message box appears, check the "always show errors"
checkbox it contains.

Otherwise it is in one of the tabs under "Internet Options" in the menu.

Richard.
Jul 20 '05 #10
"Greener" <he********@yahoo.com> wrote in message
news:9c**************************@posting.google.c om...
Thanks a lot. I tried to insert the following piece of code
to my code in several possible places: if(window.ActiveXObject){
// new ActiveXObject can be called.
}
<script language="JavaScript">
function doWord(file)
{
if(window.ActiveXObject){
if (navigator.userAgent.indexOf("MSIE")!=-1)
You have missed the point of Randy's original reply to your post. You do
not _ever_ make decisions based on the userAgent string. The only
information that can be gleaned from the contents of the user agent
string is what the user agent string contains, and that gets you
nowhere.

The point is to replace the meaningless userAgent string based test with
one that has a genuine relationship to your problem. So, assuming that
the required task is to instanciate an ActiveX objet the meaningful
_first_ test is to see if the browser has an ActiveXObject constructor.
Then you can call the ActiveXObject constructor, but the test tells you
nothing more than that the ActiveXObject constructor exists, the outcome
of the call still needs to be tested (assuming that the call itself does
not throw and exception).

<snip>What went wrong? How to make it work? Bear with me
and sorry for my ignorance.


To know what went wrong I would need to know what happened, such things
as error messages, the context of testing and so on.

Richard.
Jul 20 '05 #11

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

Similar topics

4
by: Greener | last post by:
Hi, I need help badly. Sorry for my ignorance! What's the comparable file in .js to Global.asa in ASP to capture the browser version (IE vs. Netscape)? Any existing code to share or if you have a...
47
by: Neal | last post by:
Patrick Griffiths weighs in on the CSS vs table layout debate in his blog entry "Tables my ass" - http://www.htmldog.com/ptg/archives/000049.php . A quite good article.
44
by: lester | last post by:
a pre-beginner's question: what is the pros and cons of .net, compared to ++ I am wondering what can I get if I continue to learn C# after I have learned C --> C++ --> C# ?? I think there...
2
by: Derek | last post by:
Hello: I want to capture the event when a browser is closing, to give to the user the posibility of close or no this browser. When the browser is closing, this show a confirm window with two...
3
by: Brett | last post by:
What is the following code doing? I see evt and event but what is the difference? <input type="radio" id="us_countryFlag1" name="us_country" onclick="togglePurDec(event)">Yes <script>...
17
by: Paul | last post by:
HI! I get an error with this code. <SCRIPT language="JavaScript"> If (ifp==""){ ifp="default.htm"} //--></SCRIPT> Basicly I want my iframe to have a default page if the user enters in...
9
by: Rajat Tandon | last post by:
Hello there, I am relatively new to the newsgroups and C#. I have never been disappointed with the groups and always got the prompt replies to my queries.This is yet another strange issue, I am...
1
by: karthik juneni | last post by:
Hi all, Iam trying to capture windows closing event (i.e) when the user clicks on the "X" button i want to capture that event and want to update some values in the database.I tried two methods...
3
by: zerocostproduct | last post by:
All, Been a long time since I messed with VB my brother-in-law is taking a intro programming class he wrote the following code but he's getting an error at the calculation line. I no longer...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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...

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.