获取gridview中的列索引值

时间:2018-05-18 06:24:14

标签: asp.net gridview

我在asp.net中有一个gridview,在表中我有两列。 现在,我必须在按钮上逐行显示列索引值,以dllDesc和txtBoxDesc字段的警告形式。

<asp:GridView ID="gvCar" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" AutoGenerateColumns="False" DataKeyNames="LevelID" OnRowDataBound="gvCar_RowDataBound">
            <AlternatingRowStyle BackColor="White" />
            <Columns>
                <asp:TemplateField HeaderText="Car">
                    <ItemTemplate>
                        <asp:Label ID="Car" runat="server" Width="150px" Height="30px" Font-Names="Georgia" MyCustomAttr="foo" margin-Left="100px" Text='<%# Bind("CharName") %>'></asp:Label>


                    </ItemTemplate>
                </asp:TemplateField>

                <asp:TemplateField HeaderText="Description">
                    <ItemTemplate>

                         <asp:DropDownList ID="ddlDesc" Width="142px" Height="35px" Font-Names="Georgia" margin-Left="100px" runat="server">
                         </asp:DropDownList>

                        <asp:TextBox ID="txtBoxDesc" runat="server" Width="130px" Height="28px" Font-Names="Georgia" margin-Left="100px" Text=''></asp:TextBox>

                    </ItemTemplate>
                </asp:TemplateField>

            </Columns>

        </asp:GridView> 
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />

我设法得到行的值(下面的代码),但我找不到用于显示列的方法。

protected void Button1_Click(object sender, EventArgs e)
{
    foreach (GridViewRow gvr in gvCar.Rows)
    {
        string PrimaryKey = gvCar.DataKeys[gvr.RowIndex].Values[0].ToString();
        MessageBox.Show(PrimaryKey);
    }
}

有人能帮助我吗?

2 个答案:

答案 0 :(得分:0)

你只需迭代列,然后你要求标题文本:`

 for (int i = 0; i < gvCar.Columns.Count; i++)
 {
     string columnHeader = gvCar.Columns[i].HeaderText;
 }

反馈后加入:

对于数据表,我认为它的工作原理如下:

 for (int i = 0; i < dt.Columns.Count; i++)
 {
     int colIndex = dt.Columns[i].Ordinal;
 }

希望这有帮助!

答案 1 :(得分:0)

只需将其绑定在网格视图上就不需要做任何其他事情

 <asp:TemplateField HeaderText="No.">
         <ItemTemplate>
             <%# Container.DataItemIndex + 1 %>
           </ItemTemplate>
 </asp:TemplateField>

编辑更新2

只需添加选定的索引已更改事件

<asp:GridView ID="gvCar" runat="server" OnSelectedIndexChanged="gvCar_SelectedIndexChanged">

并在您的cs文件中

protected void gvCar_SelectedIndexChanged(object sender, EventArgs e)
        {
            try
            {
               string a  = gvCar.SelectedRow.Cells[0].Text; //Write here that cell index  of index  no             
            }
            catch (Exception ex)
            {
            }
        }

如果您想通过行命令执行此操作,请打开以下链接

  

Row command example

这对您有用