6

我的 .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'

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

任何的想法?

4

1 回答 1

11

而是使用:

EventName="Click"

这将引发您的控件Click事件,LinkButton由其OnClick属性定义。在你的情况下,你的ShowVoteClick事件。

于 2012-01-15T16:30:46.553 回答