Кнопка Удалить удаляет случайный элемент, хотя у меня есть правильный код

У меня есть сетка, которая получает данные из базы данных. Он также имеет функцию удаления и настроен на удаление строки в зависимости от productID. Однако, когда я пытаюсь удалить строку, да, это удаление строки, но случайно. Не тот, который я хочу удалить.

Вот мой вид сетки:

<asp:GridView ID="gdview"  runat="server" AutoGenerateColumns="False"  
    DataKeyNames="ProductID"  OnRowCancelingEdit="gdview_RowCancelingEdit" 
    OnRowDeleting="gdview_RowDeleting" Width="100%" CssClass="table table-hover table-striped" OnRowDataBound="gdview_RowDataBound">
    <Columns>
        <asp:BoundField HeaderText="ID" DataField="ProductID" SortExpression="ProductID" >
            <ItemStyle Height="20px" Width="150px" />
        </asp:BoundField>

        <asp:BoundField HeaderText="Name" DataField="Name" SortExpression="Name" >
            <ItemStyle Height="20px" Width="150px" />
        </asp:BoundField>

        <asp:BoundField HeaderText="ProductCategory" DataField="CategoryName" SortExpression="CategoryNaame" >
            <ItemStyle Height="20px" Width="150px" />
        </asp:BoundField>

        <asp:BoundField HeaderText="Price" DataField="Price" SortExpression="Price" >
            <ItemStyle Height="20px" Width="150px" />
        </asp:BoundField>

        <asp:ImageField HeaderText ="ImageUrl" DataImageUrlField="ImageUrl" SortExpression="ImageUrl" ControlStyle-Width ="10">

        <ControlStyle Width="50px"></ControlStyle>

        </asp:ImageField>

        <asp:BoundField HeaderText="ProductQuantity" DataField="ProductQuantity" SortExpression="ProductQuantity" >
            <ItemStyle Height="20px" Width="150px" />
        </asp:BoundField>

        <asp:BoundField HeaderText="ProductSold" DataField="ProductSold" SortExpression="ProductSold" >
            <ItemStyle Height="20px" Width="150px" />
        </asp:BoundField>

        <asp:BoundField HeaderText="AvailableStock" DataField="AvailableStock" SortExpression="AvailableStock" >
            <ItemStyle Height="20px" Width="150px" />
        </asp:BoundField>

        <%--<asp:CommandField ShowEditButton="True">
            <ItemStyle Width="100px" />
        </asp:CommandField>--%>

        <asp:TemplateField>
        <ItemTemplate>
        <asp:LinkButton ID="lnkdel" runat="server" Text="Delete" CommandName="Delete" 
        OnClientClick="return confirm('Confirm Delete?');"></asp:LinkButton>

        </ItemTemplate>
        <ItemStyle Width="100px" />

        </asp:TemplateField>
    </Columns>

и вот мой код позади. В частности, функция удаления:

protected void gdview_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {

        int prodid = int.Parse(gdview.DataKeys[0].Value.ToString());
        SqlConnection conn = new SqlConnection("Data Source = 'PAULO'; Initial Catalog=ShoppingCartDB;Integrated Security =True");
        SqlDataAdapter da = new SqlDataAdapter("", conn);
        conn.Open();
        da.DeleteCommand = new SqlCommand("delete from Products where ProductID=" + prodid, conn);
        da.DeleteCommand.ExecuteNonQuery();
        conn.Close();
        GetProducts(0);
    }

1 ответ

Решение

Изменить код

int prodid = Convert.ToInt32(gdview.DataKeys[e.RowIndex].Values["ProductID"].ToString());

от

int prodid = int.Parse(gdview.DataKeys[0].Value.ToString());
Другие вопросы по тегам