AsyncPostBackTrigger 找不到 LinkButton

AsyncPostBackTrigger doesn't find LinkButton

提问人:Miklós Balogh 提问时间:1/16/2012 更新时间:1/16/2012 访问量:5400

问:

我的 .aspx 文件中有此代码

    <asp:UpdatePanel runat="server" ID="UpdatePanel1" UpdateMode="Conditional">
        <ContentTemplate>    
            <asp:PlaceHolder runat="server" ID="Placeholder1" EnableViewState="false"></asp:PlaceHolder>
        </ContentTemplate>
        <Triggers>
            <asp:AsyncPostBackTrigger ControlID="ShowVotePanelBtn" EventName="ShowVoteClick" />
        </Triggers>
    </asp:UpdatePanel>

我收到这个错误:.Could not find an event named 'ShowVoteClick' on associated control 'ShowVotePanelBtn' for the trigger in UpdatePanel 'UpdatePanel1'

我不明白这个消息。该控件具有相应的单击事件。

有什么想法吗?

asp.net asyncpostbackerror

评论

0赞 Aviral Kumar 1/16/2012
重新创建事件.它可能会起作用!

答:

11赞 Brissles 1/16/2012 #1

请改用:

EventName="Click"

这将引发控件的事件,如其属性所定义。就您而言,您的活动。ClickLinkButtonOnClickShowVoteClick