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 7 5443
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
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
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
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
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
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
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 This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
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...
|
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...
|
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...
|
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...
|
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
|
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...
|
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...
|
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...
|
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...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| | |