私はこのGridViewの持っている:「ダウンロード」ボタンが押されたときにあなたが見ることができるようにGridViewはクリックされた行の値を識別しますか?
<div class="content">
<asp:GridView ID="DocumentGrid" runat="server" AutoGenerateColumns="False" OnRowCommand="DocumentGrid_RowCommand" >
<Columns>
<asp:BoundField HeaderText="ID" DataField="ID" ItemStyle-Width="120px"/>
<asp:ButtonField HeaderText="Download Link" Text="Download"/>
</Columns>
</asp:GridView>
</div>
は、DocumentGrid_RowCommandが呼び出され、どのように私は値がクリックされた行である何かを見つけることができますか?
を。たぶん[this](http://stackoverflow.com/questions/8363202/in-c-how-can-i-reference-a-specific-product-record-based-on-a-button-thats-cl)助けて。 –
またはthis http://stackoverflow.com/questions/5619630/getting-boundfield-value-in-gridview-row-command –