のOnRowCommand
イベントがクリックGridView
時に完全なポストバックを実行しないようにしErrorLinkButton
ます。そこで、コントロールを更新パネルでラップし、AsyncPostBackTrigger
forを追加しました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' という名前のイベントが見つかりませんでした。