Telerik radNotification不适用于updatepanel

Telerik radNotification不适用于updatepanel,telerik,Telerik,当我试图在updatepanel中保留页面内容时,我使用telerik控件和radNotification不显示文本。如果我不在updatepanel中保留内容,则radNotification有效 请帮助radnotification如何使用更新面板 <asp:Content ID="Content3" ContentPlaceHolderID="BasicInformation" runat="server"> <telerik:RadNotification I

当我试图在updatepanel中保留页面内容时,我使用telerik控件和radNotification不显示文本。如果我不在updatepanel中保留内容,则radNotification有效 请帮助radnotification如何使用更新面板

<asp:Content ID="Content3" ContentPlaceHolderID="BasicInformation" runat="server">

    <telerik:RadNotification ID="notification" runat="server" Position="Center"
        TitleIcon="~/Images/warn.gif" ContentIcon="~/Images/warn.gif"
        AutoCloseDelay="0"  Width="350" EnableRoundedCorners="true">
    </telerik:RadNotification>

    <fieldset>
        <legend>CFC Order To Supplier</legend>
        <telerik:RadAjaxPanel ID="RadAjaxpanel1" runat="server">

            <table><tr>
                <td></td>
                <td><telerik:RadButton ID="btn_submit" Text="Submit" runat="server" onclick="btn_submit_Click"></telerik:RadButton></td>
            </tr></table>
        </telerik:RadAjaxPanel>
    </fieldset>

</asp:Content>

向供应商发出CFC订单

radajax面板内使用
RadNotification
。通过执行此操作,将显示用户文本 像这样

<telerik:RadAjaxPanel ID="RadAjaxpanel1" runat="server">
    <telerik:RadNotification ID="notification" runat="server" 
        Position="Center" 
        TitleIcon="~/Images/warn.gif" 
        ContentIcon="~/Images/warn.gif"
        AutoCloseDelay="0" 
        Width="350" 
        EnableRoundedCorners="true">
    </telerik:RadNotification>

    <table>
        <tr>
            <td>
            </td>
            <td>
                <telerik:RadButton ID="btn_submit" runat="server" 
                    Text="Submit" 
                    onclick="btn_submit_Click">
                </telerik:RadButton>
            </td>
        </tr>
    </table>
</telerik:RadAjaxPanel>

如果您需要一次文本,则应使用Show(newText)方法()。这不需要使用AJAX更新控件。此外,通知已经使用了回调,并将它们包装在AJAX请求中,这使得它们的性能得到了一定程度的提升