1

リンクボタンを使用してグリッドビューからデータを削除しようとしています。ロジックと、クリック時にデータベースから行データを削除するリンク ボタンを作成するのに助けが必要です。

グリッドビュー

        <asp:GridView Style="width: 100%" ID="GvReportResults" runat="server"                       AutoGenerateColumns="False" EmptyDataText="No data" ShowHeaderWhenEmpty="True">
            <Columns>
                <asp:TemplateField>
                    <ItemTemplate>
                        <asp:LinkButton ID="lnkBtnEdit" runat="server" CausesValidation="false" >Edit</asp:LinkButton>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:TemplateField>
                    <ItemTemplate>
                        <asp:LinkButton ID="LnkBtnRemove" runat="server" CausesValidation="false" CommandName="DeleteItem" CommandArgument='<%# Eval("OtherDataID") %>'>Delete</asp:LinkButton>
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:BoundField DataField="SourceID" HeaderText="ID" />
                <asp:BoundField DataField="LastName" HeaderText="Last Name" />
                <asp:BoundField DataField="FirstName" HeaderText="First Name" />
                <asp:BoundField DataField="MiddleName" HeaderText="Middle Name" />
                <asp:BoundField DataField="Title" HeaderText="Title" />
                <asp:BoundField DataField="NationalID" HeaderText="SSN" />
                <asp:BoundField DataField="DOB" HeaderText="DOB" />
                <asp:BoundField DataField="HireDate" HeaderText="Hire Date" />
                <asp:BoundField DataField="Address1" HeaderText="Address" />
                <asp:BoundField DataField="City" HeaderText="City" />
                <asp:BoundField DataField="State" HeaderText="State" />
                <asp:BoundField DataField="PostalCode" HeaderText="Zip Code" />
            </Columns>
        </asp:GridView>

グリッドビューにデータをインポートするストアプロシージャ

    private void BindGrid()
{
    //set up arguments for the stored proc
    int? FacilityID = (ddlFacility2.SelectedValue.Equals("-1")) ? (int?)null : int.Parse(ddlFacility2.SelectedValue);
    int? OtherDataID = null;

    //bind
    GvReportResults.DataSource = this.DataLayer.model.MS_spGetOtherData(FacilityID, OtherDataID);
    GvReportResults.DataBind();
}
4

3 に答える 3

0

バインドされたファイルをアイテム テンプレートに変換します。ここで使用sourceidするとdeleteクエリが起動します。
コードは次のようになります。

protected void GvReportResults_RowCommand(object sender, GridViewCommandEventArgs e)
 {
    if (e.CommandName == "DeleteItem")
    {
        int getrow = Convert.ToInt32(e.CommandArgument);
        Label lblSourceID = (Label)GvReportResults.Rows[getrow].FindControl("lblSourceID");
        bool flag=deleteRecord(lblSourceID.text);
        if(flag)
        {
         succes msg!
        }
         else{ failed msg}
        }
    }

    public bool deleteRecord(String SourceID)
    {
    try
       {
        SqlCommand cmd = new SqlCommand("Your Delete Query where condtion  ", conn);
        conn.Open();
        cmd.ExecuteNonQuery();
        conn.Close();
        return true;
    }   
    catch(Exception ac)
    {
        return false;
    }

 }
于 2013-05-28T06:02:05.770 に答える
0

ItemCommandイベントをグリッドにアタッチするだけ

グリッド定義の Web ページで、次を追加します。

<asp:DataGrid OnItemCommand="Grid_ItemCommand" />

その後、コードビハインドで:

void Grid_ItemCommand(Object sender, DataGridCommandEventArgs e)
{
    var id = Int32.Parse(e.CommandArgument.ToString()); //use parse if OtherDataID is int

    //here goes logic for deleting row
    this.DataLayer.model.spDeleteData(id);

    //after deleting rebind grid
    BindGrid();
}
于 2013-05-27T17:27:34.123 に答える