How to Refresh A User Control within a ASP.NET page

  • Thread starter Thread starter Guest
  • Start date Start date
you can't... user control is rendered as a part of page... if you wish to
just have a particular area refresh. consider using iframe and instead of
user control having a dedicated aspx page which is wound to iframe using src
attribute. you can use the meta tag or client side event based refresh the
page within iframe.

--

Regards,

Hermit Dave
(http://hdave.blogspot.com)
 
Thanks, Dave.

What about use JavaScript to call PostBack on the control ? Will that work ?
 
Back
Top