I have attempted to update to Beta 1 and CTP controls, however my update panels will not work.
I am using Firefox 1.5, I get the same problems in IE also. All I did was change around the references from the old Atlas library to the two new dll's. The Microsoft.Web.Extensions.dll is running in the GAC with full trust. The problem item is in a user control. It all worked fine under the old version. The code from the ascx file:
<asp:ScriptManager ID="ajaxScripts" runat="server" EnablePartialRendering="true"></asp:ScriptManager>
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td class="InputLabel" valign="middle">Send To:</td>
<td valign="middle"><asp:DropDownList ID="cmbGroup" runat="server" CssClass="GenericInput-Medium"></asp:DropDownList></td>
</tr>
</table>
<div style="margin-top: 20px">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><argonyxweb:ImageRollOverButton ID="btnSend" runat="server"></argonyxweb:ImageRollOverButton></td>
<td><asp:LinkButton ID="linkSend" runat="server">Send ENewsletter</asp:LinkButton></td>
<td><argonyxweb:ImageRollOverButton ID="btnCancel" runat="server"></argonyxweb:ImageRollOverButton></td>
<td><asp:LinkButton ID="linkCancel" runat="server">Cancel</asp:LinkButton></td>
</tr>
</table>
</div>
<asp:UpdatePanel ID="updButtons" runat="server">
<ContentTemplate></ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnSend" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="linkSend" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
the argonyxweb:ImageRollOverButton controls are just controls that inherit from ImageButton.
I get the following three Javascript errors:
Error - Sys.InvalidOperationException: An enumeration definition can only contain integer values.
Source - WebResource.axd?........... (Source says it's MicrosoftAjax.js)
Line: 1553
Error - Sys.Services has no properties
Source - my file
Error - Sys.UI.DomEvent has no properties
Source - WebResource.axd?.......... (Source says it's MicrosoftAjaxWebForms.js)
Line: 703
Can someone please help me out here.
Thanks,
Kingdamo.