Screen Refresh

  • Thread starter Thread starter Starbuck
  • Start date Start date
S

Starbuck

Hi
In asp.net (vb code) is there any way of just have controls that have
changed refresh rather then the whole screen.

Thanks in advance
 
In theory no, as a request is required to determine the status of any
control as they are rendered by the server. You could use Ajax where
possible to only update part of a page from the client side. Also, fragment
caching means if you refresh a whole page it can be faster as cached parts
dont get re-generated unless their dependency has expired.

--
--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
 
Thanks guys


--
nivekski
www.kevsbox.com
John Timney (MVP) said:
In theory no, as a request is required to determine the status of any
control as they are rendered by the server. You could use Ajax where
possible to only update part of a page from the client side. Also,
fragment caching means if you refresh a whole page it can be faster as
cached parts dont get re-generated unless their dependency has expired.

--
--
Regards

John Timney (MVP)
VISIT MY WEBSITE:
http://www.johntimney.com
 
Back
Top