I am working on Visual Studio 2010 and SQL Server 2008
I want to create an app in which my Gridview should change data (displayed in website)
with respect to time
means say
col1 | col2
name1 | age1
name2 | age2
name3 | age3
after 10 sec say
col1 | col2
name4 | age4
name5 | age5
name6 | age6
Can any one help me out?
the easiest way is to use the ASP.NET AJAX timer control: http://ajax.net-tutorials.com/controls/timer-control/ After 10 seconds, the tick event fires, and you can wrap everything in an UpdatePanel to give the user the full AJAX feel.
HTH.