Auto Refresh ASPX Page

  • Thread starter Thread starter jack-e
  • Start date Start date
Do you mean your page stays open on the client machine and needs to refresh
at a particular time?

You can use a javascript timer to check current time periodically and
perform myForm.submit() call when the time comes.
 
Eliyahu said:
Do you mean your page stays open on the client machine and needs to refresh
at a particular time?

You can use a javascript timer to check current time periodically and
perform myForm.submit() call when the time comes.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]


jack-e said:
How do I auto refresh a page a particular time of the day?


yes that's right - the page basically stays open on the server and i
want it refresh each night - it's for an email send out.
 
Pages are open on clients, not on servers. Servers serve pages to clients
and pretty much forget about them. Asp.Net is not for running periodical
server tasks. Did you consider using a task scheduler or a windows service
instead? You can find a task scheduler either in Windows or in SQL Server.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]


jack-e said:
Eliyahu said:
Do you mean your page stays open on the client machine and needs to
refresh
at a particular time?

You can use a javascript timer to check current time periodically and
perform myForm.submit() call when the time comes.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]


jack-e said:
How do I auto refresh a page a particular time of the day?


yes that's right - the page basically stays open on the server and i
want it refresh each night - it's for an email send out.
 
Back
Top