refresh control

G

Guest

Is it possible to only refresh a control such as a datagrid without
refreshing the entire page?

I have 2 datagrids on my page and i only need to refresh 1 of them and if
possible i do not want to refresh the entire page since there is alot of data
on the page.

can that be done or no?
 
K

Karl

No,
But you can cache either the non-changed control using OutputCaching, or
more simply simple cache the data.

Karl
 
A

Alan Ferrandiz [MCT]

This a quite complicated scenario. One way to do that is by using frames and passing any object you want through Sesssion variables. Using caching would make a solution but it will bind some parts of the page to display the same values for a determined period of time.

Hope this helps

Alan Ferrandiz Langley
www.geekswithblogs.com/aferrandiz
 
K

Karl

To expand on Alan's comment of caching, you won't only be bound to a determined period of time (ie, you could cache the data in a session, thus binding it to a user as well). You have some additional flexibility in invalidating cache, but I agree that the scenario is complicated.

karl
This a quite complicated scenario. One way to do that is by using frames and passing any object you want through Sesssion variables. Using caching would make a solution but it will bind some parts of the page to display the same values for a determined period of time.

Hope this helps

Alan Ferrandiz Langley
www.geekswithblogs.com/aferrandiz
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top