简体   繁体   English

(Gridview)正在从数据库C#中删除第一条记录

[英](Gridview)1st record is being deleted from database c#

<asp:GridView ID="GridView1" runat="server" OnSelectedIndexChanged="GridView1_SelectedIndexChanged" AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333" GridLines="None">           
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
            <Columns>

                 <asp:TemplateField HeaderText="Add Records">
                    <ItemTemplate>
                       <asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="True" OnClick="btnadd_Click" CommandName="insert"
                        Text="Insert"></asp:LinkButton>
                    </ItemTemplate>
                </asp:TemplateField>
                 <asp:TemplateField HeaderText="Delete Records">
                    <ItemTemplate>
                       <asp:LinkButton ID="LinkButton2" runat="server" CausesValidation="True" OnClick="btndelete_Click" CommandName="delete"
                        Text="delete"></asp:LinkButton>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="id">
                    <ItemTemplate>
                        <asp:Label ID="lblid" runat="server" Text='<%#Bind("id") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="Client Name">
                    <ItemTemplate>
                        <asp:Label ID="lblname" runat="server" Text='<%#Bind("client_name") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="Email">
                    <ItemTemplate>
                        <asp:Label ID="lblemail" runat="server" Text='<%#Bind("email") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="Google Email">
                    <ItemTemplate>
                        <asp:Label ID="lblgemail" runat="server" Text='<%#Bind("google_email") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField HeaderText="Contact Number">
                    <ItemTemplate>
                        <asp:Label ID="lblcont" runat="server" Text='<%#Bind("contact_number") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>

                <asp:TemplateField HeaderText="role">
                    <ItemTemplate>
                        <asp:Label ID="lblrole" runat="server" Text='<%#Bind("role") %>'></asp:Label>
                    </ItemTemplate>
                </asp:TemplateField>

            </Columns>
            <EditRowStyle BackColor="#999999" />
            <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
            <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
            <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
            <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
            <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
            <SortedAscendingCellStyle BackColor="#E9E7E2" />
            <SortedAscendingHeaderStyle BackColor="#506C8C" />
            <SortedDescendingCellStyle BackColor="#FFFDF8" />
            <SortedDescendingHeaderStyle BackColor="#6F8DAE" />
        </asp:GridView>

I have a table with 100 record 我有一张有100条记录的桌子

This is my Gridview I have two buttons add and delete(on Delete buttonClick particular record should be deleted from database) like, I clicked on record number 35(record number 35 should be deleted) but instead record number 1 is being deleted everytime. 这是我的Gridview,我有两个按钮添加和删除(在Delete按钮上单击应从数据库中删除特定记录),例如,我单击了记录号35(应删除记录号35),但每次都删除记录号1。

public void delete()
{ 

    foreach (GridViewRow g in GridView1.Rows)
    {
        Label lblname = (Label)g.FindControl("lblname");
        Button btnde = (Button)g.FindControl("btndelete");
        //Response.Redirect("cs.aspx");
        SqlCommand cmd = new SqlCommand("delete from clientrequest where client_name='" + lblname.Text + "'", con);
        con.Open();
        cmd.ExecuteNonQuery();
        Response.Redirect("welcome.aspx");
        con.Close();
    }
}



protected void btndelete_Click(object sender, EventArgs e)
{
    delete();
    GridView1.Visible = false;

}

This is my CS code. 这是我的CS代码。

You can find your Label control position and get their value, then delete from database. 您可以找到Label控件的位置并获取其值,然后从数据库中删除。 It will work fine. 它将正常工作。

 public void delete()
    { 

foreach (GridViewRow g in GridView1.Rows)
{
  if(g.RowType == DataControlRowType.DataRow)
{ 
 Label lblname = (Label)g.FindControl("lblname");
 SqlCommand cmd = new SqlCommand("delete from clientrequest where client_name='" + lblname.Text + "'", con);
    con.Open();
    cmd.ExecuteNonQuery();
    Response.Redirect("welcome.aspx");
    con.Close();
    break;
}             
}
}

It's because on delete you are deleting record using foreach loop which is not a good way to do. 这是因为在删除时,您正在使用foreach循环删除记录,但这不是一个好方法。 You could try out this: 您可以尝试以下方法:

public void delete(string Name)
{ 
        SqlCommand cmd = new SqlCommand("delete from clientrequest where client_name='" + Name + "'", con);
        con.Open();
        cmd.ExecuteNonQuery();
        Response.Redirect("welcome.aspx");
        con.Close();
}

And on Delete button click find the particular row and send it to delete Method 然后在“删除”按钮上单击以查找特定行并将其发送给删除方法

protected void btndelete_Click(object sender, EventArgs e)
{
    Button btn = sender as Button;
    GridViewRow gvr = (GridViewRow)btn.NamingContainer;
    string name = ((Label)gvr.FindControl("lblname")).Text;
    delete(name);
    GridView1.Visible = false;

}

Note: Also you could write your redirection inside button click event on basis of delete method return. 注意:您也可以根据delete方法返回,在按钮click事件中编写重定向。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM