Re: Update Form In Real Time
How are you populating the table?
How many records are you retrieving?
An update panel still does a postback to the server and so the ASP.NET engine on the server generates the html before returning it to be displayed in the browser as normal.
Interesting read
http://encosia.com/are-you-making-th...ajax-mistakes/
If you want to see the table rows to be added and visible in the browser one at a time you will need to populate the table via javascript or some fully client side method.