如何在Gridview控件中访问boundfield值?

时间:2011-03-10 11:17:00

标签: c# asp.net gridview controls boundfield

我有一个网格视图控件,其中包含一些绑定和模板字段,如下所示

<asp:BoundField DataField="ID" HeaderText="ID" InsertVisible="False" 
ReadOnly="True" SortExpression="ID" Visible="False" />
<asp:TemplateField HeaderText="Question">
<ItemTemplate>
<asp:LinkButton ID="btnques" runat="server" onclick="btnques_Click" 
Text='<%# bind("Question") %>'></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>

现在,我想要做的是在buttom btnques的click事件中,我想访问其相应的boundfield ID的值并将其存储在标签中。谁能告诉我怎么做......

1 个答案:

答案 0 :(得分:3)

应该像

 Text='<%# bind("Question") %> CommandArgument='<%# Eval("QuestionId") %>'

然后在代码后面你可以访问...

protected void grd_RowCommand(object sender, GridViewCommandEventArgs e)
{
    if (e.CommandName == "")
    {
       e.CommandArgument // will return the id 
    }        
}