I want to make a section on my asp.net webpage where I will be fetching data from a SQL Server 2005 database and it would need to be refreshed every minute without the whole page refreshing. Only that section would need to refresh. It's something like stock prices as they keep updating per minute in my database. What control should I use and how should I implement it? Can anyone please help me out?
You can do this by using AJAX. Place the control you want to update evry minute in an Update panel. Use the timer control to to invoke the code every minute.