473,770 Members | 5,299 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

status=no compatibility problems

I have a little asp progress bar window that I open up with javascript,
sized and located, all the extras turned off. It works by refreshing itself
every second and displaying how much a file upload has progressed. (This is
a paid for 3rd party thing so don't ask me to change the way it works!) Even
though I have "status=no" in the javascript window.open statment it has a
status bar and every second the status bar does its thing where it displays
its own little progress bar and the word "done", obviously this is only
going to cause confusion with what the rest of the window is doing.

I've been experimenting with status=no

This little test page opens another window without status bar if I run it
locally on my PC but not if I run it from the server. (I'm XP, server is Win
2003)

http://www.mississippiprinting.com/NewTest/test.htm

If I run it from the server in Netscape it doesn't have the status bar.
If I run it locally in firefox it does!

So it looks like turning off the status bar is not as easy as sending the
right javascript code to do it. Looks to me like it is dependent on browser
and operating system and just by looking at some googled links on the
subject it is also dependent on your security settings.

I cannot find a definitive answer to this, my client wants the status bar
gone from his progress window and I'd like to be able to explain why it is
beyond my control, if that turns out to be the case.

Anyone familiar with this that can send me a link that explains it all? My
googling hasn't been very successfull.

Thanks!
Jan 30 '06 #1
9 2248
Simon Wigzell said the following on 1/30/2006 11:00 AM:
I have a little asp progress bar window that I open up with javascript,
sized and located, all the extras turned off. It works by refreshing itself
every second and displaying how much a file upload has progressed. (This is
a paid for 3rd party thing so don't ask me to change the way it works!) Even
though I have "status=no" in the javascript window.open statment it has a
status bar and every second the status bar does its thing where it displays
its own little progress bar and the word "done", obviously this is only
going to cause confusion with what the rest of the window is doing.

I've been experimenting with status=no

This little test page opens another window without status bar if I run it
locally on my PC but not if I run it from the server. (I'm XP, server is Win
2003)
Server is irrelevant. It could be Win2003 or it could be
HumptyDumptysWa llServer and the server wouldn't matter.
http://www.mississippiprinting.com/NewTest/test.htm

If I run it from the server in Netscape it doesn't have the status bar.
If I run it locally in firefox it does!
IE6 XP SP2 has the status bar as well.
So it looks like turning off the status bar is not as easy as sending the
right javascript code to do it. Looks to me like it is dependent on browser
and operating system and just by looking at some googled links on the
subject it is also dependent on your security settings.
It is browser dependent, not OS related at all.
I cannot find a definitive answer to this, my client wants the status bar
gone from his progress window and I'd like to be able to explain why it is
beyond my control, if that turns out to be the case.


Your client is out of luck. The reason you can't remove it is because
too many people abused it and users complained to the browser people and
now you can't remove it.

--
Randy
comp.lang.javas cript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jan 30 '06 #2
Simon Wigzell wrote:
[...]
I've been experimenting with status=no
You could in fact omit this parameter with the same result as that is the
default value.
This little test page opens another window without status bar if I run it
locally on my PC but not if I run it from the server. (I'm XP, server is
Win 2003)

http://www.mississippiprinting.com/NewTest/test.htm
Probably that is because the browser or popup blocker vendor tried to
prevent JS abuse on the Web (that is, http:// URIs) while retaining
the functionality for the local file system (that is, file:// URIs).

If you have a local Web server and access the document via
<URL:http://localhost/>, is there a status bar?
If I run it from the server in Netscape it doesn't have the status bar.
If I run it locally in firefox it does!


Test results should be comparable, so you should test both URIs in both user
agents. Netscape != Firefox, even though both are Gecko-based.
PointedEars
Jan 30 '06 #3
Simon Wigzell wrote :
I have a little asp progress bar window that I open up with javascript,
sized and located, all the extras turned off. It works by refreshing itself
every second and displaying how much a file upload has progressed. (This is
a paid for 3rd party thing so don't ask me to change the way it works!) Even
though I have "status=no" in the javascript window.open statment it has a
status bar and every second the status bar does its thing where it displays
its own little progress bar and the word "done", obviously this is only
going to cause confusion with what the rest of the window is doing.

I've been experimenting with status=no

This little test page opens another window without status bar if I run it
locally on my PC but not if I run it from the server. (I'm XP, server is Win
2003)

http://www.mississippiprinting.com/NewTest/test.htm

If I run it from the server in Netscape it doesn't have the status bar.
If I run it locally in firefox it does!

So it looks like turning off the status bar is not as easy as sending the
right javascript code to do it.


Everything has been summed up here:

DOM:window.open ()
http://developer.mozilla.org/en/docs..._on_status_bar
"The default preference setting in recent Mozilla-based browser releases
and in Firefox 1.0 is to force the presence of the status bar."

"In MSIE 6 for XP SP2: For windows opened using window.open():
For windows opened using window.open():
'Expect the status bar to be present, and code for it. The status
bar will be on by default and is 20-25 pixels in height. (...)'
quote from Fine-Tune Your Web Site for Windows XP Service Pack 2,
Browser Window Restrictions in XP SP2
"

etc.

Gérard
--
remove blah to email me
Jan 30 '06 #4
Randy Webb wrote :
Your client is out of luck. The reason you can't remove it is because
too many people abused it and users complained to the browser people and
now you can't remove it.


Exactly. And IE7 (starting with beta 2) will force the address bar at
all time. Because of hacks, phishing attacks, etc.. Everything clearly
worded like this:

"We think the address bar is also important for users to see in pop-up
windows. A missing address bar creates a chance for a fraudster to forge
an address of their own. To help thwart that, IE7 will show the address
bar on all internet windows to help users see where they are."
coming from Microsoft Internet Explorer Blog, Better Website Identification
http://blogs.msdn.com/ie/archive/2005/11/21.aspx

Gérard
--
remove blah to email me
Jan 30 '06 #5
Gérard Talbot said the following on 1/30/2006 5:53 PM:
Randy Webb wrote :
Your client is out of luck. The reason you can't remove it is because
too many people abused it and users complained to the browser people
and now you can't remove it.


Exactly. And IE7 (starting with beta 2) will force the address bar at
all time. Because of hacks, phishing attacks, etc.. Everything clearly
worded like this:

"We think the address bar is also important for users to see in pop-up
windows. A missing address bar creates a chance for a fraudster to forge
an address of their own. To help thwart that, IE7 will show the address
bar on all internet windows to help users see where they are."
coming from Microsoft Internet Explorer Blog, Better Website Identification
http://blogs.msdn.com/ie/archive/2005/11/21.aspx


About time MS caught up with everybody else. Now, if Mozilla and the
rest will enforce that without me having to edit a file to force an
address bar :)

How does one request that features like that be added in Mozilla though?

I know I can edit the user_prefs file but it would be nice if you didn't
have to.

--
Randy
comp.lang.javas cript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jan 30 '06 #6
Randy Webb wrote :
Gérard Talbot said the following on 1/30/2006 5:53 PM:
[snipped]

About time MS caught up with everybody else. Now, if Mozilla and the
rest will enforce that without me having to edit a file to force an
address bar :)

How does one request that features like that be added in Mozilla though?

I know I can edit the user_prefs file but it would be nice if you didn't
have to.

Open up about:config,
search for
dom.disable_win dow_open_featur e.location
set it to true.
You're done.
There is no user interface besides the about:config.

Gérard
--
remove blah to email me
Jan 31 '06 #7
On 2006-01-30, Randy Webb <Hi************ @aol.com> wrote:
About time MS caught up with everybody else. Now, if Mozilla and the
rest will enforce that without me having to edit a file to force an
address bar :)
can't you reach that option from about:config ?

dom.disable_win dow_open_featur e.location
How does one request that features like that be added in Mozilla though?
one submits a bug report.... set aside a couple of hours:

The process involves downloading the latest version and confirming that
the bug still exists, and then reading through about 2000 other bug reports.
I know I can edit the user_prefs file but it would be nice if you didn't
have to.


type about:config into the location field.

Bye.
Jasen
Feb 5 '06 #8
Jasen Betts said the following on 2/5/2006 2:50 AM:
On 2006-01-30, Randy Webb <Hi************ @aol.com> wrote:
About time MS caught up with everybody else. Now, if Mozilla and the
rest will enforce that without me having to edit a file to force an
address bar :)
can't you reach that option from about:config ?


Yes. But it would be nice if it were forced to start with and me having
the option of disallowing it, not the other way around.
dom.disable_win dow_open_featur e.location
How does one request that features like that be added in Mozilla though?


one submits a bug report.... set aside a couple of hours:


Submit a bug report to request a new/changed feature?

--
Randy
comp.lang.javas cript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Feb 5 '06 #9
On 2006-02-05, Randy Webb <Hi************ @aol.com> wrote:
Jasen Betts said the following on 2/5/2006 2:50 AM:
On 2006-01-30, Randy Webb <Hi************ @aol.com> wrote:
How does one request that features like that be added in Mozilla though?


one submits a bug report.... set aside a couple of hours:


Submit a bug report to request a new/changed feature?


All bug reports request new or changed features.

:)

Bye.
Jasen
Feb 5 '06 #10

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

Similar topics

3
4594
by: Pandora Law | last post by:
This probably belongs more correctly in an IE5 newsgroup since it relates to use on a machine that has IE 5.00.3314, but I can't find a suitable group .... and I cant locate an answer on Google groups. My question is this ... if a window has been opened using a function like this function Graphic(GraphicURL) { NewWindow = window.open ( GraphicURL, "DisplayWindow", "toolbar=no,location=no,directories=no,status=no,
3
1271
by: I. Tipton | last post by:
Has anyone noticed that status no longer works in IE after updating to SP2? I have several window popups that are supposed to be status bar free but all show the status bar now.
10
1510
by: Nainto | last post by:
Hello, I have posted before about trying to find the status of an FTP uplaod but couldn't get anything to work. After some more searching I found http://groups.google.com/group/comp.lang.python/browse_thread/thread/76be9a994547db4/91917c906cdc04d4?q=ftp+progress&rnum=1#91917c906cdc04d4 but it does not seem to work because it just uploads the file and does not print a . onto the screen. HEre is the code I have when I'm using the code from...
3
4019
by: Stevie_mac | last post by:
It might be me but... I dont seem to get a Page_Load event when a opening an ASPX in an iFrame. I do geta Page_Load event when an item on the ASPX (inside the iFrame) is clicked but then IsPostBack=False by now!. The ASPX is opened via client side script (into an iFrame) inside a .HTM file (as ASPX postback causes problems in a modal internet explorer dialog if not in an iFrame!) Anyone know how to get around this - i need to...
3
1408
by: tshad | last post by:
My status window is showing in a small XP window I am opening up even though I have "Status=no" function OpenLogoPreviewWindow() { window.open('logoDisplay.htm','myWindow','menubar=no,toolbar=no,directories=no,resizable=no,scrollbars=no,location=no,status=no');}In the script, I have to add about 50 to handle the size of the statuswindows:function entry(){ document.LogoDisplay.src = "..\\..\\uploads\\"...
1
6967
by: Ronen Yacov | last post by:
Hi There, I've using IE 7.0.5730.11 on Windows XP. I want to open a pop up using javascript without showing the status bar, and to do so I use the function: function openwindow() { window.open("http://www.javascript- coder.com","mywindow","menubar=1,resizable=1,status=no,width=350,height=250"); }
1
1236
by: Rajesh Ghaywat | last post by:
I hava prob in ShowModalDialogBox. i have clearly mention status=no , while openinf ShowModalDialogBox but it still showing it when i publish my site on server. Its working fine on Localhost. please help Thanks in advance.............
15
3358
by: qfchen | last post by:
I was able to open a connection using TCPClient, it is able to read and write data or string, however when I turn off the remote device or unplug the network cable, then check the client.connected property, it always shows "True". what could be happened? Thanks
6
2165
by: Archana | last post by:
Hi all, i am facing one problem with status bar of IE. when i execute any javascript function or navigate to any link it is showing me that in status bar which i don't want. how will ido this? any help will be truely appreciated.
0
9591
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
9425
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10225
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
8880
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
7415
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
6676
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
5312
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5449
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3573
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.