I am refreshing a zone using the Ajax Update panel and a timer. Is there a way of disabling the timer after a certain amount of time or times executed?
Sherri, what do you mean when saying timer? Is this javascript function (perhaps setInterval)?
I am using the Timer web part. Set the zone to Ajax - Use update panel.
Sherri, I'm afraid does not allow that behavior. But I think you can easily achieve this with javascript
var x = setInterval(...); window.clearInterval(x);
and do postback inside of setInterval.
Please, sign in to be able to submit a new answer.