I have run into an issue with the latest version 2013.2.717.35 when using the eventname property in the radajaxmanager. Using this version and setting an eventname for a control causes a yellow screen of death. See the attached jpg. I have tried this in 3 different projects with all yielding the same result. If I remove the eventname property then all works well. If I revert back to version 417.35, there are no problems using the eventname property. Any suggestions?
My ajax code:
Event code:
Controls:
My ajax code:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="btnTest" EventName="btnTest_Click"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadTextBox1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManager>Event code:
Private Sub btnTest_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnTest.ClickEnd SubControls:
<telerik:RadTextBox ID="RadTextBox1" runat="server" TabIndex="1" EmptyMessage="Empty"></telerik:RadTextBox><telerik:RadButton ID="btnTest" runat="server" AutoPostBack="true" Text="Click"></telerik:RadButton>