473,387 Members | 1,925 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.

when multiple iframes, problem with IE progress bar display

I have a web form let's say 'YYZ.aspx'.
It has an iframe in it.
When it loads it shows progress bar in IE this way: loading for page then
again loading for page in iframe.
This part is fine.
Problem is when I put page 'YYZ.aspx' in iframe of another page, let's say
'Home.aspx'.
In short: (page (page in iframe(page in iframe) ) )
Progress bar shows ones (fast), then second time(kind of fast) and then
third time. And this time it never finishes through with progress display.

Question: can I force a progress bar to disappear somehow?
Or there is another option?

thanks,
Oleg
Nov 19 '05 #1
7 5469
you have VERY little control over the users browser.... sorry...
--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Oleg" wrote:
I have a web form let's say 'YYZ.aspx'.
It has an iframe in it.
When it loads it shows progress bar in IE this way: loading for page then
again loading for page in iframe.
This part is fine.
Problem is when I put page 'YYZ.aspx' in iframe of another page, let's say
'Home.aspx'.
In short: (page (page in iframe(page in iframe) ) )
Progress bar shows ones (fast), then second time(kind of fast) and then
third time. And this time it never finishes through with progress display.

Question: can I force a progress bar to disappear somehow?
Or there is another option?

thanks,
Oleg

Nov 19 '05 #2
I see.
But can I send a signal somehow that the page is loaded to fake completed
process?
Oleg

"Curt_C [MVP]" wrote:
you have VERY little control over the users browser.... sorry...
--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Oleg" wrote:
I have a web form let's say 'YYZ.aspx'.
It has an iframe in it.
When it loads it shows progress bar in IE this way: loading for page then
again loading for page in iframe.
This part is fine.
Problem is when I put page 'YYZ.aspx' in iframe of another page, let's say
'Home.aspx'.
In short: (page (page in iframe(page in iframe) ) )
Progress bar shows ones (fast), then second time(kind of fast) and then
third time. And this time it never finishes through with progress display.

Question: can I force a progress bar to disappear somehow?
Or there is another option?

thanks,
Oleg

Nov 19 '05 #3
not to my knowledge. It would be browser, and probably even version, dependant.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Oleg" wrote:
I see.
But can I send a signal somehow that the page is loaded to fake completed
process?
Oleg

"Curt_C [MVP]" wrote:
you have VERY little control over the users browser.... sorry...
--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Oleg" wrote:
I have a web form let's say 'YYZ.aspx'.
It has an iframe in it.
When it loads it shows progress bar in IE this way: loading for page then
again loading for page in iframe.
This part is fine.
Problem is when I put page 'YYZ.aspx' in iframe of another page, let's say
'Home.aspx'.
In short: (page (page in iframe(page in iframe) ) )
Progress bar shows ones (fast), then second time(kind of fast) and then
third time. And this time it never finishes through with progress display.

Question: can I force a progress bar to disappear somehow?
Or there is another option?

thanks,
Oleg

Nov 19 '05 #4
thanks,
I'll just blame iframe and IE for this.
Oleg

"Curt_C [MVP]" wrote:
not to my knowledge. It would be browser, and probably even version, dependant.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Oleg" wrote:
I see.
But can I send a signal somehow that the page is loaded to fake completed
process?
Oleg

"Curt_C [MVP]" wrote:
you have VERY little control over the users browser.... sorry...
--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Oleg" wrote:

> I have a web form let's say 'YYZ.aspx'.
> It has an iframe in it.
> When it loads it shows progress bar in IE this way: loading for page then
> again loading for page in iframe.
> This part is fine.
> Problem is when I put page 'YYZ.aspx' in iframe of another page, let's say
> 'Home.aspx'.
> In short: (page (page in iframe(page in iframe) ) )
> Progress bar shows ones (fast), then second time(kind of fast) and then
> third time. And this time it never finishes through with progress display.
>
> Question: can I force a progress bar to disappear somehow?
> Or there is another option?
>
> thanks,
> Oleg

Nov 19 '05 #5
Oleg,

Actually a fix for this was posted in this group much earlier by
ad********@hotmail.com. I haven't tried it myself so I don't know if it
actually works or not. Here it is again:
The problem this fixes is where you put some content in an iframe and
the content finishes loading in the iframe but the ie status bar keeps
loading.
I had this problem for quite a while, here is what I did to fix it. I
had one main page that had 2 Iframes that contained the content i
wished to display. With just these 2 iframes on the page I would
itermitantly get the status bar problem. To fix this I created a third
ifram of just size 1 called garbageframe. Then on what ever page I was
going to display in one of the 2 content frames I added :

<body onload="javascript:fixprogressbar()">

where fixprogressbar was a javascript function

function fixprogressbar()
{
top.garbageframe.document.write("");
top.garbageframe.close();
return
}

No more problems

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Oleg" <Ol**@discussions.microsoft.com> wrote in message
news:44**********************************@microsof t.com...
thanks,
I'll just blame iframe and IE for this.
Oleg

"Curt_C [MVP]" wrote:
not to my knowledge. It would be browser, and probably even version,
dependant.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Oleg" wrote:
> I see.
> But can I send a signal somehow that the page is loaded to fake
> completed
> process?
> Oleg
>
> "Curt_C [MVP]" wrote:
>
> > you have VERY little control over the users browser.... sorry...
> >
> >
> > --
> > Curt Christianson
> > site: http://www.darkfalz.com
> > blog: http://blog.darkfalz.com
> >
> >
> >
> > "Oleg" wrote:
> >
> > > I have a web form let's say 'YYZ.aspx'.
> > > It has an iframe in it.
> > > When it loads it shows progress bar in IE this way: loading for
> > > page then
> > > again loading for page in iframe.
> > > This part is fine.
> > > Problem is when I put page 'YYZ.aspx' in iframe of another page,
> > > let's say
> > > 'Home.aspx'.
> > > In short: (page (page in iframe(page in iframe) ) )
> > > Progress bar shows ones (fast), then second time(kind of fast) and
> > > then
> > > third time. And this time it never finishes through with progress
> > > display.
> > >
> > > Question: can I force a progress bar to disappear somehow?
> > > Or there is another option?
> > >
> > > thanks,
> > > Oleg

Nov 19 '05 #6
S. Justin,

It works!
Thanks a lot,

Oleg

"S. Justin Gengo" wrote:
Oleg,

Actually a fix for this was posted in this group much earlier by
ad********@hotmail.com. I haven't tried it myself so I don't know if it
actually works or not. Here it is again:
The problem this fixes is where you put some content in an iframe and
the content finishes loading in the iframe but the ie status bar keeps
loading.
I had this problem for quite a while, here is what I did to fix it. I
had one main page that had 2 Iframes that contained the content i
wished to display. With just these 2 iframes on the page I would
itermitantly get the status bar problem. To fix this I created a third
ifram of just size 1 called garbageframe. Then on what ever page I was
going to display in one of the 2 content frames I added :

<body onload="javascript:fixprogressbar()">

where fixprogressbar was a javascript function

function fixprogressbar()
{
top.garbageframe.document.write("");
top.garbageframe.close();
return
}

No more problems

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Oleg" <Ol**@discussions.microsoft.com> wrote in message
news:44**********************************@microsof t.com...
thanks,
I'll just blame iframe and IE for this.
Oleg

"Curt_C [MVP]" wrote:
not to my knowledge. It would be browser, and probably even version,
dependant.

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com

"Oleg" wrote:

> I see.
> But can I send a signal somehow that the page is loaded to fake
> completed
> process?
> Oleg
>
> "Curt_C [MVP]" wrote:
>
> > you have VERY little control over the users browser.... sorry...
> >
> >
> > --
> > Curt Christianson
> > site: http://www.darkfalz.com
> > blog: http://blog.darkfalz.com
> >
> >
> >
> > "Oleg" wrote:
> >
> > > I have a web form let's say 'YYZ.aspx'.
> > > It has an iframe in it.
> > > When it loads it shows progress bar in IE this way: loading for
> > > page then
> > > again loading for page in iframe.
> > > This part is fine.
> > > Problem is when I put page 'YYZ.aspx' in iframe of another page,
> > > let's say
> > > 'Home.aspx'.
> > > In short: (page (page in iframe(page in iframe) ) )
> > > Progress bar shows ones (fast), then second time(kind of fast) and
> > > then
> > > third time. And this time it never finishes through with progress
> > > display.
> > >
> > > Question: can I force a progress bar to disappear somehow?
> > > Or there is another option?
> > >
> > > thanks,
> > > Oleg


Nov 19 '05 #7
Oleg,

Glad I could help. :)

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Oleg" <Ol**@discussions.microsoft.com> wrote in message
news:8C**********************************@microsof t.com...
S. Justin,

It works!
Thanks a lot,

Oleg

"S. Justin Gengo" wrote:
Oleg,

Actually a fix for this was posted in this group much earlier by
ad********@hotmail.com. I haven't tried it myself so I don't know if it
actually works or not. Here it is again:
The problem this fixes is where you put some content in an iframe and
the content finishes loading in the iframe but the ie status bar keeps
loading.
I had this problem for quite a while, here is what I did to fix it. I
had one main page that had 2 Iframes that contained the content i
wished to display. With just these 2 iframes on the page I would
itermitantly get the status bar problem. To fix this I created a third
ifram of just size 1 called garbageframe. Then on what ever page I was
going to display in one of the 2 content frames I added :

<body onload="javascript:fixprogressbar()">

where fixprogressbar was a javascript function

function fixprogressbar()
{
top.garbageframe.document.write("");
top.garbageframe.close();
return
}

No more problems

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"Oleg" <Ol**@discussions.microsoft.com> wrote in message
news:44**********************************@microsof t.com...
> thanks,
> I'll just blame iframe and IE for this.
> Oleg
>
> "Curt_C [MVP]" wrote:
>
>> not to my knowledge. It would be browser, and probably even version,
>> dependant.
>>
>> --
>> Curt Christianson
>> site: http://www.darkfalz.com
>> blog: http://blog.darkfalz.com
>>
>>
>>
>> "Oleg" wrote:
>>
>> > I see.
>> > But can I send a signal somehow that the page is loaded to fake
>> > completed
>> > process?
>> > Oleg
>> >
>> > "Curt_C [MVP]" wrote:
>> >
>> > > you have VERY little control over the users browser.... sorry...
>> > >
>> > >
>> > > --
>> > > Curt Christianson
>> > > site: http://www.darkfalz.com
>> > > blog: http://blog.darkfalz.com
>> > >
>> > >
>> > >
>> > > "Oleg" wrote:
>> > >
>> > > > I have a web form let's say 'YYZ.aspx'.
>> > > > It has an iframe in it.
>> > > > When it loads it shows progress bar in IE this way: loading for
>> > > > page then
>> > > > again loading for page in iframe.
>> > > > This part is fine.
>> > > > Problem is when I put page 'YYZ.aspx' in iframe of another page,
>> > > > let's say
>> > > > 'Home.aspx'.
>> > > > In short: (page (page in iframe(page in iframe) ) )
>> > > > Progress bar shows ones (fast), then second time(kind of fast)
>> > > > and
>> > > > then
>> > > > third time. And this time it never finishes through with
>> > > > progress
>> > > > display.
>> > > >
>> > > > Question: can I force a progress bar to disappear somehow?
>> > > > Or there is another option?
>> > > >
>> > > > thanks,
>> > > > Oleg


Nov 19 '05 #8

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

Similar topics

10
by: maxim vexler | last post by:
I'm reading a lot of talks lately about the term iFrame and with your permission would like to ask a few question about that : - what is iFrame, i mean what is it good for ? - does all the...
3
by: GQ | last post by:
We have a Web page that at load time will execute and build: a DHTML Menu/Data Driven, an Iframe with Detail Data, an Iframe to display Progress Information and another iframe with totals...
1
by: Offshore Developer | last post by:
We are using a IFRAME in a page. The location of the IFRAME is being dynamically changed by following type of javascript code - frames.location.href="abc.asp"; It's working.The page in the...
7
by: Scott | last post by:
Hello All, I've been reading all of the various issues with Iframes in netscape. I have tried all of the various fixes posted, and have even implemented both an iframe and ilayer. My problem is...
5
by: Homa | last post by:
Hi all, Can anyone give me some links about how to do an async web service call from aspx and display a temperary page before the web service returns? Thanks, Homa Wong
11
by: Kent Feiler | last post by:
One thing I like about frames is that they're a good place to stow Javascript. Javascript that I'd like to be around while the visible content of the screen changes goes in the frame declaration...
19
by: wmanzo | last post by:
I have a really professional conspiracy movie site and I use tons of layers and an external scroll bar assembly. I would like to put the various sections into MS Iframes and in order to clean up...
1
by: draw | last post by:
I have one container page "container.htm" In this container I have multiple iframes "iframepage1.htm", "iframepage2.htm", etc. and one button firing a js script to submit. In every iframe page I...
0
by: Bigi | last post by:
Hi, I have a c# .net 2 app that runs on a 2003 server manually and as a scheduled task, there can only be one instance of the app on the machine, the app has a form that display the progress of what...
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: 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...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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,...

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.