Has anyone encountered a problem where creating a simple example with the UpdatePanel always results in a full refresh of the page after the postback?
I created a page where I have a label outside the UpdatePanel and a label inside the UpdatePanel along with the button to cause the postback. Both labels showed the date and time (set during the PageLoad event handler). After clicking on the push button, the full page is refreshed instead of just one of the labels. I know that the full page was refreshed as I also added a script code to display an alert(). If everything was working correctly, the alert would only be displayed once when the page is loaded for the very first time. But, it is displayed after each postback.
The example was created using the AJAX web site template in VS Team Suite. This is being tested on XP SP2 fully patched.