Technology Questions

Go Back   Technology Questions > Software Questions > Operating System Questions > Windows XP

Windows XP Discuss the Microsoft Windows XP Operating System



Reply
 
LinkBack Thread Tools
  #1  
Old 07-09-2009, 09:50 AM
JCG
Newsgroup Contributor
 
Posts: n/a
Desktop Web Page Refresh

Greetings:

I added a webpage i devleoped to my desktop through the display
properties>customize desktop>web. On my webpage i have a clock that will
remain on the same time until i right click on the web area on the desktop
and click refresh. Is there anyway that the webpage can be updated
continuously to always show the accurate time?
--
Thanks in advance...j
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

 
Old 07-09-2009, 09:50 AM
  #2  
Old 07-09-2009, 11:40 AM
Singapore Computer Service
Newsgroup Contributor
 
Posts: n/a
Re: Desktop Web Page Refresh

Hello,

Why not use JavaScript's setInterval or setTimeout method in the page to
update the time automatically?

__
http://www.bootstrike.com/ComputerService/
Singapore Computer Home Remote On-Site Repair Service
"JCG" <JCG@discussions.microsoft.com> wrote in message
news:C8B44F6A-0D5A-4155-ADAE-E5373BB4C25B@microsoft.com...
> Greetings:
>
> I added a webpage i devleoped to my desktop through the display
> properties>customize desktop>web. On my webpage i have a clock that will
> remain on the same time until i right click on the web area on the desktop
> and click refresh. Is there anyway that the webpage can be updated
> continuously to always show the accurate time?
> --
> Thanks in advance...j



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3  
Old 07-10-2009, 06:20 AM
JCG
Newsgroup Contributor
 
Posts: n/a
Re: Desktop Web Page Refresh

Thanks Sing...

As a novice, I don't know the code for doing this. Any chance you can
provide code or point me in the right direction...thanks in advance....j


--
Thanks in advance...j


"Singapore Computer Service" wrote:

> Hello,
>
> Why not use JavaScript's setInterval or setTimeout method in the page to
> update the time automatically?
>
> __
> http://www.bootstrike.com/ComputerService/
> Singapore Computer Home Remote On-Site Repair Service
> "JCG" <JCG@discussions.microsoft.com> wrote in message
> news:C8B44F6A-0D5A-4155-ADAE-E5373BB4C25B@microsoft.com...
> > Greetings:
> >
> > I added a webpage i devleoped to my desktop through the display
> > properties>customize desktop>web. On my webpage i have a clock that will
> > remain on the same time until i right click on the web area on the desktop
> > and click refresh. Is there anyway that the webpage can be updated
> > continuously to always show the accurate time?
> > --
> > Thanks in advance...j

>
>
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4  
Old 07-10-2009, 07:00 AM
Bernd
Newsgroup Contributor
 
Posts: n/a
Re: Desktop Web Page Refresh



-------- Original-Nachricht --------

> Thanks Sing...
>
> As a novice, I don't know the code for doing this. Any chance you can
> provide code or point me in the right direction...thanks in advance....j
>
>

Simple HTML:

<head>
<meta http-equiv="refresh" content="5">
</head>

content = seconds between refreshes

Bernd
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #5  
Old 07-10-2009, 08:00 AM
Singapore Computer Service
Newsgroup Contributor
 
Posts: n/a
Re: Desktop Web Page Refresh

Hello,

Meta Refresh as the other poster mentions should be simple for you
http://en.wikipedia.org/wiki/Meta_refresh

JavaScript's method may be complicated for you but would only modify the
part of the page you want to update, that is, if the page can be updated
without calling the hosting server. If the server needs to be asked for
updated information, you can use AJAX techniques to get the latest data from
the server.
__
http://www.bootstrike.com/ComputerService/
Singapore Computer Home Remote On-Site Repair Service
http://www.bootstrike.com/VHSVideoConvert/
Video Conversion VHS Video8 Hi8 Digital8 MiniDv NTSC PAL
"JCG" <JCG@discussions.microsoft.com> wrote in message
news:A9388133-6872-4275-B5CB-021BF7253B39@microsoft.com...
> Thanks Sing...
>
> As a novice, I don't know the code for doing this. Any chance you can
> provide code or point me in the right direction...thanks in advance....j
>
>
> --
> Thanks in advance...j
>
>
> "Singapore Computer Service" wrote:
>
>> Hello,
>>
>> Why not use JavaScript's setInterval or setTimeout method in the page to
>> update the time automatically?
>>
>> __
>> http://www.bootstrike.com/ComputerService/
>> Singapore Computer Home Remote On-Site Repair Service
>> "JCG" <JCG@discussions.microsoft.com> wrote in message
>> news:C8B44F6A-0D5A-4155-ADAE-E5373BB4C25B@microsoft.com...
>> > Greetings:
>> >
>> > I added a webpage i devleoped to my desktop through the display
>> > properties>customize desktop>web. On my webpage i have a clock that
>> > will
>> > remain on the same time until i right click on the web area on the
>> > desktop
>> > and click refresh. Is there anyway that the webpage can be updated
>> > continuously to always show the accurate time?
>> > --
>> > Thanks in advance...j

>>
>>
>>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #6  
Old 07-10-2009, 08:20 AM
Twayne
Newsgroup Contributor
 
Posts: n/a
Re: Desktop Web Page Refresh

"Bernd" <fake@gmx.de> wrote in message
news:OQBKfVWAKHA.4376@TK2MSFTNGP04.phx.gbl
> -------- Original-Nachricht --------
>
>> Thanks Sing...
>>
>> As a novice, I don't know the code for doing this. Any chance you
>> can provide code or point me in the right direction...thanks in
>> advance....j

> Simple HTML:
>
> <head>
> <meta http-equiv="refresh" content="5">
> </head>
>
> content = seconds between refreshes
>
> Bernd


I was about to suggest that. In fact, the interval could be as short a
1 (second) as long as it's not a busy non-static page which it pretty
surely is considering the question.

OP: That's only one of many meta-tags available to you if you care to do
a little research at wc3 schools.com an excellent learning/reference
site. Or is it w3c? lol, if one doesn't work, try the other!

Twayne


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
top of page refresh mitchell a. Internet Explorer 1 03-28-2009 06:19 PM
how to get web page to refresh automatically coolcad Internet Explorer 0 01-09-2008 12:01 PM
How to refresh a page Ed Kearns Internet Explorer 1 05-31-2007 01:11 PM
Refresh Page Gerry Cornell Internet Explorer 10 05-06-2007 08:55 AM
Desktop Does Not Refresh After Desktop Folder Redirection mjmanges Windows XP 1 01-04-2007 03:53 AM


New To Technology Questions? Do You Need Help with Your Computer or Device? Do You Need Help with this site?

All times are GMT -8. The time now is 01:15 PM.


2003 - 2010 All Rights Reserved. Technology Questions

Search Engine Friendly URLs by vBSEO 3.3.0