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.

How to build Server app for auto repeat refresh display at the Bro

Hi All:

I am pretty new at ASP.NET development. Currently I need to build a Web
Server app using C# and ASP.NET to automatically and repeatly refresh data
changes at fixed intervals (2 to 30 secs) occurring at the server side, and
refresh them at the table fields at the Browser screen without any user
intervention.

Typically, the user submit to the Server URL which returns a page that has a
lot of table fields in it but without any input buttons etc. The page is to
stay on refreshing data changes at fixed intervals until the user clicks off.
This application is used for a traditional Dashboard display setup.

Can anybody please advice me on which HTML or Server Control, Caching
methods, timers methods, or any special technique or code samples, etc. -
used under the C# and ASP.NET environment to achieve this??

Thanks - JS
Nov 18 '05 #1
2 2041
Joe Shum wrote:
Hi All:

I am pretty new at ASP.NET development. Currently I need to build a Web
Server app using C# and ASP.NET to automatically and repeatly refresh data
changes at fixed intervals (2 to 30 secs) occurring at the server side, and
refresh them at the table fields at the Browser screen without any user
intervention.

Typically, the user submit to the Server URL which returns a page that has a
lot of table fields in it but without any input buttons etc. The page is to
stay on refreshing data changes at fixed intervals until the user clicks off.
This application is used for a traditional Dashboard display setup.

Can anybody please advice me on which HTML or Server Control, Caching
methods, timers methods, or any special technique or code samples, etc. -
used under the C# and ASP.NET environment to achieve this??

Thanks - JS

QUOTE: 'without any user intervention'
My advice: build a Windows Service and run that on the server (or other
machine).

If you want to dom something with data on a webserver with a certain
interval and you relay on visitors... you're asking for problems.

Best practice could be developing a class library (.dll) with the core
functionality. To test all the stuff in the classes you can either build
a webpage that uses the library or an executable. If you've got it
working you can build a Windows Service that does exactly the same. Why?
Programming a Windows Service can be more or less difficult because it's
programming without an interface.

A Wndoows Service is a program that starts when Windows starts and that
keeps on running in the background.

//Rutger

Nov 18 '05 #2
If you put the following line into the HTML header

<META HTTP-EQUIV="REFRESH" CONTENT=n>

the page will be updated every n seconds.

Eliyahu

"Joe Shum" <Joe Sh**@discussions.microsoft.com> wrote in message
news:14**********************************@microsof t.com...
Hi All:

I am pretty new at ASP.NET development. Currently I need to build a Web
Server app using C# and ASP.NET to automatically and repeatly refresh data
changes at fixed intervals (2 to 30 secs) occurring at the server side, and refresh them at the table fields at the Browser screen without any user
intervention.

Typically, the user submit to the Server URL which returns a page that has a lot of table fields in it but without any input buttons etc. The page is to stay on refreshing data changes at fixed intervals until the user clicks off. This application is used for a traditional Dashboard display setup.

Can anybody please advice me on which HTML or Server Control, Caching
methods, timers methods, or any special technique or code samples, etc. -
used under the C# and ASP.NET environment to achieve this??

Thanks - JS

Nov 18 '05 #3

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

Similar topics

1
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...
1
by: Theodore A. Jencks | last post by:
Hi all, I posted a question about a side navigation bar earlier where I was encountering this problem. I thought I'd repost the question in a more general format because I'm not sure people...
7
by: Rudy | last post by:
Hello All! After working in the television industry, moving to a developing career has been interesting to say the least. 3 years of developing with books, and the help of you fine folks on this...
7
by: Brian | last post by:
hello, I am looking for a way to auto refresh a web page that I created, but also let the user choose to stop the auto refresh. I can not figure out how to stop the auto refresh. Any help would...
0
by: Auto | last post by:
Hello to everybody, I would like to know how to build an ASP.NET 2.0 Application that show me some data from a SQL Server Table and refresh it every one or two seconds ? With autorefresh ? May...
14
by: rabbitrun | last post by:
Hi Everyone, I work for a financial company. I am planning to give a presentation to rest of the development team (15 people) here on moving server side logic to client-side javascript for an...
1
by: neridaj | last post by:
Hello, I've found a few postings of this problem but none of the answers seem to fix my problem. I have a content div wrapped around a left floated image and a right floated table. I want the...
1
by: pravinnweb | last post by:
can anyone tell me how to set auto height to outer div that is in green box id "gray-background" it should increase relatively to inner div "smbox" here is the css and html code it should work in...
5
by: empiresolutions | last post by:
I'm trying to build a box that i can place content in. This box should dynamically change width and height to accommodate the content inside. I have build out a non-working example here...
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
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.