5

OnRowCommandイベントがクリックGridView時に完全なポストバックを実行しないようにしErrorLinkButtonます。そこで、コントロールを更新パネルでラップし、AsyncPostBackTriggerforを追加しましたOnRowCommand:

<asp:GridView ID="DataSourceMappingGridView" runat="server" DataKeyNames="Index" ClientIDMode="Static" OnRowCommand="DataSourceMappingGridView_RowCommand" OnRowDataBound="DataSourceMappingGridView_RowDataBound">
<Columns>
    <asp:TemplateField>
        <ItemTemplate>
            <asp:UpdatePanel ID="ErrorUpdatePanel" runat="server">
                <Triggers>
                    <asp:AsyncPostBackTrigger ControlID="DataSourceMappingGridView" EventName="OnRowCommand" />
                </Triggers>
                <ContentTemplate>
                    <asp:LinkButton ID="ErrorTextLinkButton" CommandName="Errors" CommandArgument='<%#Bind("Index") %>' runat="server" Text='View Errors' /> 
                </ContentTemplate>
            </asp:UpdatePanel>
        </ItemTemplate>
    </asp:TemplateField>
</Columns>
</asp:GridView>

しかし、次のエラーが表示されます。

UpdatePanel 'ErrorUpdatePanel' のトリガーに関連付けられたコントロール 'DataSourceMappingGridView' で 'OnRowCommand' という名前のイベントが見つかりませんでした。

4

1 に答える 1