is it possible to refresh just a control?

  • Thread starter Thread starter les
  • Start date Start date
L

les

Hello,

Is there any way of refreshing just a control instead of refreshing the
whole page without using frames?

Any help is greatly appreciated,
Les
 
No, that's not possible. You must refresh the whole page. But Smart
Navigation can accomplish the illusion that only the control refreshed.:
http://msdn.microsoft.com/library/d...fsystemwebuipageclasssmartnavigationtopic.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconpage.asp

Another option is that you could call a web service from your client side
JScript. Then update your control manually using javascript. You can use
the web service behavior for this. (WebService.htc) This technique works
with IE only.
Here's more details:
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/behaviors/overview.asp

http://msdn.microsoft.com/downloads...rnet/behaviors/library/webservice/default.asp
 
Back
Top