Refresh user control without reloading the page

liunx

Guest
Hai,

I have placed a label in user control. I am assigning a value from database during page load of user control and it works perfectly.

After database is udpated with new value, it is not reflected in the user control. I need to refresh the page to see the updated value. Can any one pls guide me how to update the label value in user control in aspx page.

Thanks,
Siva RIt isn't possible. HTTP is a request based protocol, it is not stateful. There is no way to move a value to the user without him requesting it which would require the whole page to be resent. The only ways to not refresh the whole thing would be with a (i)frame or an applet.
 
Back
Top