Hi
Scenario:
I have an updatepanel, with an embedded timer. This panel does little more than display how much time is left before the next 'event'. It updates a ASP:Label every 10 seconds. No problems there. I suggested every minute to the client, they wanted every second, so we agreed on 10 seconds (all irrelevant).
On another part of the same page, I have an edit box with an autocomplete extender. This also worked a treat.
Problem:
If the user is typing into the editbox when the updatepanel with the time in refreshes, the focus is lost.
If the autocomplete list is displayed on the user to select from, and the updatepanel timer fires, the extender disappears.
I also have a button which displays a popupcontrol (using the extender) and this went away on the timer update as well, but I cheated here by disabling the timer whilst the popupcontrol was on the screen, and re-enabling (undisable?) it when the popupcontrol went away. but that isn't so easy with the TextBox / Focus problem.
Solution:???
Is there anyway I can have a control, which updates itself visually on the screen (and does some background stuff in CodeBehind), without interfering with anything else on the screen? ie focus, floating divs/panels etc.
Cheers
Malcolm