如何从 GridView 获取 BoundField

发布于 2024-12-11 18:23:43 字数 510 浏览 1 评论 0原文

我有以下 GridView

<asp:GridView ID="grdImoveis" runat="server" DataSourceID="dsGrid">
                    <Columns>
                        <asp:BoundField HeaderText="Nome" DataField="NomeCompleto" />
                        <asp:ImageButton ID="ibtnAlterar" ImageUrl="../tema/_Internas/icons/edit.png" runat="server" OnClick="btnChange_Click" /> 
                    </Columns>
</GridView>

如何在后面的代码中获取此字段的值并将该值传递给我的 btnChange_Click 事件?

I have the following GridView

<asp:GridView ID="grdImoveis" runat="server" DataSourceID="dsGrid">
                    <Columns>
                        <asp:BoundField HeaderText="Nome" DataField="NomeCompleto" />
                        <asp:ImageButton ID="ibtnAlterar" ImageUrl="../tema/_Internas/icons/edit.png" runat="server" OnClick="btnChange_Click" /> 
                    </Columns>
</GridView>

How can i get the value of this field in code behind and pass the value to my btnChange_Click event ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

避讳 2024-12-18 18:23:43

如果您问我的想法,您可能会想要处理 GridView 的 OnRowCommand 并捕获其中的按钮操作。

<asp:GridView ID="grdImoveis" onrowcommand="grdImoveis_RowCommand" ...

代码隐藏:

 protected void grdImoveis_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        if (e.CommandName == "BUTTON")
        {
            // Check value of e.CommandArgument and do something here:
        }
    }

通过将 CommandNameCommandArgument 设置为您想要传递的值,将您的图像按钮更改为类似的内容。您还必须将其包装在 TemplateField 中:

<asp:TemplateField>
            <ItemTemplate>
<asp:ImageButton CommandName="BUTTON" CommandArgument='<%#Eval("NomeCompleto") %>' ID="ibtnAlterar" ImageUrl="../tema/_Internas/icons/edit.png" runat="server"  />
</ItemTemplate></asp:TemplateField>

If your asking what I think, you'd like want to handle the OnRowCommand of your GridView and capture the button action in there.

<asp:GridView ID="grdImoveis" onrowcommand="grdImoveis_RowCommand" ...

Code-Behind:

 protected void grdImoveis_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        if (e.CommandName == "BUTTON")
        {
            // Check value of e.CommandArgument and do something here:
        }
    }

And change your imagebutton to something like so by setting CommandName and CommandArgument to the value you want to pass. You also have to wrap it in a TemplateField:

<asp:TemplateField>
            <ItemTemplate>
<asp:ImageButton CommandName="BUTTON" CommandArgument='<%#Eval("NomeCompleto") %>' ID="ibtnAlterar" ImageUrl="../tema/_Internas/icons/edit.png" runat="server"  />
</ItemTemplate></asp:TemplateField>
辞慾 2024-12-18 18:23:43

TemplateField 中使用这样的 CommandArgument 属性

CommandArgument='<%# Container.DataItemIndex  %>'

,然后在“OnRowCommand”事件处理程序后面的代码中使用它,如下所示:

protected void gv_RowCommand(object sender, GridViewCommandEventArgs e)
{
    object dataItem = gv.Rows[int.Parse(e.CommandArgument.ToString())].DataItem;
}

Use CommandArgument property like this

CommandArgument='<%# Container.DataItemIndex  %>'

inside a TemplateField and then in your code behind 'OnRowCommand' event handler use it like this:

protected void gv_RowCommand(object sender, GridViewCommandEventArgs e)
{
    object dataItem = gv.Rows[int.Parse(e.CommandArgument.ToString())].DataItem;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文