0

假设我的 GridView (ID 和名称)中只有两列,每当我点击它时我都需要获取 ID 的值。例如,如果我点击123,我应该得到123。但是在这里...情况并非如此...当我单击任何 ID 时,它会在该 ID 右侧返回名称(例如;在 123 的情况下,我得到 Tony Stark),但是当我在单击时获得 ID 的值,它总是返回一个空字符串。

换句话说,我在 id 中得到了正确的名称(当 X=1 时),但是当 X=0 时,id 变成一个空字符串...... (int X 和字符串 id:见下面的 C# 代码)

示例 GridView1

我的 GridView 中的 XAML 代码:

                        <asp:ButtonField
                            DataTextField="ID"
                            HeaderText="ID">
                        </asp:ButtonField>

                        <asp:BoundField
                            DataField="Name"
                            HeaderText="NAME">
                        </asp:BoundField>

C#:

    protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        string id = GridView1.Rows[Convert.ToInt32(e.CommandArgument)].Cells[X].Text.ToString();
        Response.Write(id);
    }

怎么了?!!以及如何解决这个问题?谢谢!

4

3 回答 3

2

更复杂但更好的解决方案是:

在 GridView 中,使用 DataKeyNames 标记和 RowCommand 事件并将绑定值放在 DataKeyName 中,例如:

DataKeyNames="ID" OnRowCommand="GridView1_RowCommand" 

在您的网格视图中使用模板字段(您不需要只使用图像按钮,如下例所示):

<asp:TemplateField HeaderText="Action">
                                <HeaderStyle HorizontalAlign="Center" />
                                <ItemStyle HorizontalAlign="Left" Wrap="false" />
                                <ItemTemplate>
                                    <div class="GridViewOpc">
                                        <asp:ImageButton ID="buttonDelete" runat="server" Width="17" Height="17" AlternateText="Update"
                                            CausesValidation="False" Visible="false" CommandName="Delete" Enabled="true"
                                            ImageUrl="~/yourDeletepicture.gif"  />

                                        <asp:ImageButton ID="buttonUpdate" runat="server" AlternateText="Update" Width="17"
                                            Height="17" CausesValidation="False" Visible="false" CommandName="Update" ImageUrl="~/yourUpdatePicture.gif" />
                                    </div>
                                </ItemTemplate>
                            </asp:TemplateField>

并在 CodeBehind 上获取它:

protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{

            Control ctl = e.CommandSource as Control;
            GridViewRow CurrentRow = ctl.NamingContainer as GridViewRow;

                if (e.CommandName == "Update")
                {

                    int ID = Convert.ToInt32(GridView1.DataKeys[CurrentRow.RowIndex][0]);
                }

               if (e.CommandName == "Delete")
                {

                    int ID = Convert.ToInt32(GridView1.DataKeys[CurrentRow.RowIndex][0]);

                }
    }
于 2014-09-26T23:21:29.923 回答
0

不使用templateField您也可以从中获取值ButtonField。在你的ButtonField你需要给它一个ButtonType.

XML:

<asp:ButtonField ButtonType="Link" CommandName="PanelName" DataTextField="PANEL_NAME" HeaderText="Panel Name" runat="server" SortExpression="PANEL_NAME" text="PanleName"/>

代码:

if (e.CommandName == "PanelName")
{
    string PanleName;
    int index = Convert.ToInt32(e.CommandArgument);
    GridViewRow selectedRow = dgSearchResult.Rows[index];
    PanleName = ((LinkButton)selectedRow.Cells[1].Controls[0]).Text;
}

注意:无论您的单元格索引是什么,Cells[1] 表示索引为 1。但如果 GridView 中只有一个控件,则控件始终从 0 开始。

于 2021-08-09T21:36:15.447 回答
-1

在您的 RowCommand 处理程序中,我认为这就是您想要的:

protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        int id = (int)(DataBinder.Eval(e.Row.DataItem, "ID"));
        Response.Write(id);
    }
}

我正在从 vb 转换,所以我可能错过了一些语法,但你明白了......

于 2014-09-26T20:30:51.160 回答