473,770 Members | 1,994 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

page refresh. bug?

On my web app I allow the user to enable or disable the refreshing of the
page. I notcied that if the browser window is minimized the page does not
refresh, or if it sits a long time without any user interaction(doe s not
happen often) the page does not refresh. Is this a code issue or just how
refresh works?

Nov 18 '05 #1
4 1850
I dont believe its a bug. I think its a optimization done by IE.

--
Girish Bharadwaj
http://msmvps.com/gbvb
"Mike" <Mi**@discussio ns.microsoft.co m> wrote in message
news:71******** *************** ***********@mic rosoft.com...
On my web app I allow the user to enable or disable the refreshing of the
page. I notcied that if the browser window is minimized the page does not
refresh, or if it sits a long time without any user interaction(doe s not
happen often) the page does not refresh. Is this a code issue or just how
refresh works?

Nov 18 '05 #2
Refreshing a browser is done either by the user pressing a key, menu, or
toolbar item that refreshes the page, or by the use of JavaScript on the
page. You didn't mention in what context you were talking about refreshing a
page. What you DID say ("I allow the user to enable or disable the
refreshing of the page") doesn't make sense. I can tell you that if a
browser window is minimized, the user certainly can NOT interact with the
browser to refresh the page.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Mike" <Mi**@discussio ns.microsoft.co m> wrote in message
news:71******** *************** ***********@mic rosoft.com...
On my web app I allow the user to enable or disable the refreshing of the
page. I notcied that if the browser window is minimized the page does not
refresh, or if it sits a long time without any user interaction(doe s not
happen often) the page does not refresh. Is this a code issue or just how
refresh works?

Nov 18 '05 #3
I have the page refreshing via javascript code,

"Kevin Spencer" wrote:
Refreshing a browser is done either by the user pressing a key, menu, or
toolbar item that refreshes the page, or by the use of JavaScript on the
page. You didn't mention in what context you were talking about refreshing a
page. What you DID say ("I allow the user to enable or disable the
refreshing of the page") doesn't make sense. I can tell you that if a
browser window is minimized, the user certainly can NOT interact with the
browser to refresh the page.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Mike" <Mi**@discussio ns.microsoft.co m> wrote in message
news:71******** *************** ***********@mic rosoft.com...
On my web app I allow the user to enable or disable the refreshing of the
page. I notcied that if the browser window is minimized the page does not
refresh, or if it sits a long time without any user interaction(doe s not
happen often) the page does not refresh. Is this a code issue or just how
refresh works?


Nov 18 '05 #4
Thanks Mike,

So, you're saying that if the browser is minimized, the JavaScript doesn't
run and refresh the page? Interesting. Have you tried using a META Refresh
tag?

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Mike" <Mi**@discussio ns.microsoft.co m> wrote in message
news:05******** *************** ***********@mic rosoft.com...
I have the page refreshing via javascript code,

"Kevin Spencer" wrote:
Refreshing a browser is done either by the user pressing a key, menu, or
toolbar item that refreshes the page, or by the use of JavaScript on the
page. You didn't mention in what context you were talking about refreshing a page. What you DID say ("I allow the user to enable or disable the
refreshing of the page") doesn't make sense. I can tell you that if a
browser window is minimized, the user certainly can NOT interact with the browser to refresh the page.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Mike" <Mi**@discussio ns.microsoft.co m> wrote in message
news:71******** *************** ***********@mic rosoft.com...
On my web app I allow the user to enable or disable the refreshing of the page. I notcied that if the browser window is minimized the page does not refresh, or if it sits a long time without any user interaction(doe s not happen often) the page does not refresh. Is this a code issue or just how refresh works?


Nov 18 '05 #5

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

Similar topics

3
12923
by: Scott | last post by:
I have a clickable graph that resides on page 1. If user clicks a data point on the graph, the page runs again yeilding a 2nd graph that shows a more detailed graph. Problem is, I have a recordset table on the 2nd graph page and because the user gets to it by clicking the graph, the page doesn't properly post to render the recordset table. I can click "Refresh" on 2nd page and table displays fine. Is there an ASP refresh command that...
1
34320
by: Lew | last post by:
Hi all, I'm trying to create a page that has a user-selectable page auto-refresh option (IE 5.5). Essentially, it's a page that contains a checkbox, when the user checks the checkbox, I'd like the page to auto-refresh every 4 seconds....if the user un-checks the checkbox, I'd like to turn off the auto refresh. The page is as follows:
37
12754
by: ajay | last post by:
How to make a web page getting refreshed after a given time interval automatically. HTML Code plz. Tx Ajay
18
10146
by: Alan Z. Scharf | last post by:
1. I have a chain of six asynch callbacks initiated by a button, and want the page to refresh at the end of each callback to display A. Results of a SQLServer query showing cumulative running time, and B. A progress bar. 2. I have this working with a refresh timer: <META http-equiv="refresh" content="5">
9
7786
by: PK9 | last post by:
I'm having an issue with the "Refresh" of an asp.net page. The refresh is actually calling my last onClick event. I thought that asp.net was supposed to be stateless in that it shouldn't remember that I clicked a button before the refresh. Here is what is going on: 1) Page Loads 2) User enters some values, clicks the "Save" button 3) The onClick event handler for the save button saves the data to the database and the page is...
10
23419
by: Fred Nelson | last post by:
Hi: I have a VB.NET web application and I need to find a way to cause a page refresh from within my application. Does anyone know how to force the browser to refresh the current page? Thanks very much for your help! Fred
10
32884
by: phforum | last post by:
Hi, I wrote a PHP page for user input the information to search the database. And the database data will update every second. I want to set the auto refresh to get the data from database every minute. But the page always display the dialog box ask me to resend the information. How to disable this warning message. I using POST and REQUEST to get the data from user input page. Thanks all
4
5061
by: Dan | last post by:
Hi, i'm not sure to understand the difference between refreshing the pagina by clicking on 'refresh' in the browser and a postback. What i think it is: Suppose a page with a form containing a textbox and a dropdowlist: and a button to start something n code-behind: a refresh doesn't send any value back to the server but with a postback, the values are sent? But then, which role does Viewstate play in the postback proces?
5
3752
by: =?Utf-8?B?Sm9obg==?= | last post by:
Hi, I used the following code to refresh the parent page, and it works very well (Thanks to Peter Bromberg "). Response.Write("<script language='javascript' type='text/javascript'{ window.opener.location = 'Default.aspx?Reload=100'; }</script>"); Response.Write("<script language='javascript' type='text/javascript'{ self.close(); }</script>");
0
9618
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
10259
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...
1
10038
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,...
1
7456
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
6710
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
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
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
2
3609
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2849
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.