我希望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”的事件。