You can do it easier, using javascript simply refresh the window with
gridview and add Grid.DataBind() method on Page Load. If you use MS AJAX,
your visitors will have to download 400KB javascript file on each page...it
stays in cache, but if you need only bind a grid it's unnecessary.
Regards,
Lukas Holota
> Hi Dave,
>
[quoted text clipped - 14 lines]
>> I've been looking for the answer with no luck. I'm probably just not
>> asking the question correctly. Thanks for any assistance.
Coskun SUNALI [MVP] - 26 Dec 2007 15:09 GMT
Hi,
That is an another idea but obviously more expensive concidering the
performance and if you imagine that the page is around 100KB and the client
causes 5 refreshes - which is a normal amount of refresh if s/he want to
edit some data - it will use more than 400KB bandwidth.
In addition, refreshing the grid on every postback may also cause a
performance problem due to the page might be refreshed for some other
reasons rather than refreshing the data within the grid.

Signature
All the best,
Coskun SUNALI
MVP ASP/ASP.NET
http://sunali.com
> You can do it easier, using javascript simply refresh the window with
> gridview and add Grid.DataBind() method on Page Load. If you use MS AJAX,
[quoted text clipped - 24 lines]
>>> I've been looking for the answer with no luck. I'm probably just not
>>> asking the question correctly. Thanks for any assistance.