I have an ASP.NET page that displays a value which changes every second. Much like an example where time would be displayed and the time runs automatically.
For example, I have a method:
private void GetMethod()
{
lblValue.Text = Convert.ToString(value1);
}
I need that value to change when it changes on the database, which is in intervals of seconds.