I have a UserControl with an UpdatePanel in it. Within the update panel is a DropDownList. When the section is changed, a DataList is loaded and a submit button is made visible. The submit button works fine in IE and FireFox but in Chrome, it intermittently appears to do nothing (that is, many times it works fine in Chrome). When it does not work, the asp.net ajax UpdateProgress template for the update panel does not display and there is not post back to the server. The UpdatePanel has ChildrenAsTriggers=true and the button is a child. The button is enabled and I'm not getting any script errors in the Chrome developer tools console. I also get no server side exceptions at any point. There is no custom javascript attatched to the button:
<asp:Button ID="btnContinue" runat="server" Text="" CssClass="btn_continue" OnClick="btnCheckOut_Click" />
How can I further debug what's happening (or not happening) when I click the button?
Edit: Here's some new info:
1) When the problem occurs, no subsequent postbacks work. I select an item from the drop down list, it posts back asynchronously, and then neither the button nor changing the drop down list selection again causes a postback.
2) I've found that when I experience the problem, I can go to Tools>Clear Browsing Data and check only "Empty The Cache" and clear it, then reload page and the problem goes away. I can't reproduce it until I log out and come back to the page. So it seems to be cache related.
3) Multiple postbacks seem to work fine without the UpdatePanel.
Edit2: This is running in SharePoint 2007 which is apparently an important factor. The masterpage uses a sharepoint script INIT.JS in it's body OnLoad and form OnSubmit events to do some stuff. One thing it does is sets a flag indicating whether the form has been submitted and set's it back to false in OnLoad. The OnLoad function also basically bypasses that process for ajax postbacks. The problem is Chrome is not executing the OnLoad event so that process does not get bypassed, the flag never gets set back to false, and successive submissions are denied by the OnSubmit function. I've got a thread exploring that issue here: http://social.msdn.microsoft.com/Forums/en-ca/sharepointgeneral/thread/97ff77d1-31d4-45ff-af6e-524416cdff1c