1

グリッドビューのイベントを呼び出さないようLinkButtonに、私のクリックイベントが必要です。GridViewOnRowCommand

その理由は、ポストバックを実行せずにこれをUpdatePaneland updateにカプセル化したいからです。ErrorUpdateTextBox

<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">
                <ContentTemplate>          
                    <asp:LinkButton ID="ErrorTextLinkButton" runat="server" Text='View Errors'  OnClick="ErrorTextLinkButton_Click" /> 
                    <asp:TextBox ID="ErrorUpdateTextBox" runat="server" Text="">
                </ContentTemplate>
            </asp:UpdatePanel>
        </ItemTemplate>
    </asp:TemplateField>
</Columns>
</asp:GridView>
4

1 に答える 1