Hi,
Im using ajax in my content page which contain several control in page. It could be like dropdownlist, button, gridview and radiobuttonlist. All control is working find except the radiobuttonlist, it always do the postback. Since Im using master page to control all content page, I have no idea why is not functioning? Therefore, I create a single page without inherit the masterpage, the radiobuttonlist is working. So is it the masterpage problem?
Part of the code:
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<atlas:UpdatePanel ID="UpdatePanel1" runat="server">
<Triggers>
<atlas:ControlValueTrigger ControlID="RadioButtonList" PropertyName="SelectedValue" />
<atlas:ControlEventTrigger ControlID="Button" EventName="Click" />
<atlas:ControlValueTrigger ControlID="DropDownList" PropertyName="SelectedValue" />
</Triggers>
<ContentTemplate>
.
.
</ContentTemplate>
</atlas:UpdatePanel>
</asp:Content>
Any help will be appreciate.
Calvin
Im using ajax in my content page which contain several control in page. It could be like dropdownlist, button, gridview and radiobuttonlist. All control is working find except the radiobuttonlist, it always do the postback. Since Im using master page to control all content page, I have no idea why is not functioning? Therefore, I create a single page without inherit the masterpage, the radiobuttonlist is working. So is it the masterpage problem?
Part of the code:
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<atlas:UpdatePanel ID="UpdatePanel1" runat="server">
<Triggers>
<atlas:ControlValueTrigger ControlID="RadioButtonList" PropertyName="SelectedValue" />
<atlas:ControlEventTrigger ControlID="Button" EventName="Click" />
<atlas:ControlValueTrigger ControlID="DropDownList" PropertyName="SelectedValue" />
</Triggers>
<ContentTemplate>
.
.
</ContentTemplate>
</atlas:UpdatePanel>
</asp:Content>
Any help will be appreciate.
Calvin