Hi there,
Can you show more code here? It's not entirely clear when your data gets updated or how your page is set up.
Typically, however, when you want to refresh your data, you call DataBind on the relevant control. So, if you want to refresh a GridView you call:
myGridView.DataBind()
from your Button's Click handler (or from another location where it makes sense)
This forces the control to get and display updated data.
Hope this helps,
Imar
|