This is what I have:
and my code behind:
When i click the button nothing happens, no alert box, no exception notification nothing...can someone point me in the right direction?
Thanks
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="btnTest"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="btnTest" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" Runat="server" |
| Skin="Default"> |
| </telerik:RadAjaxLoadingPanel> |
| <asp:Button runat="server" Text="OK" ID="btnTest" /> |
and my code behind:
| protected void Page_Load(object sender, EventArgs e) |
| { |
| if (Page.IsPostBack) |
| { |
| throw new Exception("test"); |
| } |
| } |
When i click the button nothing happens, no alert box, no exception notification nothing...can someone point me in the right direction?
Thanks