Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/295.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 删除gridview的单个行而不从数据库中删除_C#_Asp.net_Sql_Linq_Gridview - Fatal编程技术网

C# 删除gridview的单个行而不从数据库中删除

C# 删除gridview的单个行而不从数据库中删除,c#,asp.net,sql,linq,gridview,C#,Asp.net,Sql,Linq,Gridview,我正在ASP.NET&C中使用Linq to SQL。我想通过单击删除按钮(即CommandField或TemplateField)删除gridview中的每一行,并使用gridTrainingNeed\u rowdeleding事件 下面是我在页面加载时加载gridview的代码 int departmentId; int branchId; int positionId; double month; int levelId; protected void Page_Load(object

我正在ASP.NET&C中使用Linq to SQL。我想通过单击删除按钮(即
CommandField
TemplateField
)删除gridview中的每一行,并使用
gridTrainingNeed\u rowdeleding
事件

下面是我在页面加载时加载gridview的代码

int departmentId;
int branchId;
int positionId;
double month;
int levelId;

protected void Page_Load(object sender, EventArgs e)
{
        if (!IsPostBack)
        {
            Initialize();
        }
}

public void Initialize()
{
        ddlBranch.DataSource = TrainingManager.GetBranchName();
        ddlBranch.DataBind();

        ddlDepartment.DataSource = DepartmentManager.GetAllDepartments();
        ddlDepartment.DataBind();

        ddlPosition.DataSource = TrainingManager.GetDesignationName();
        ddlPosition.DataBind();

        ddlLevel.DataSource = TrainingManager.GetLevelName();
        ddlLevel.DataBind();

        gridTrainingNeed.DataSource = TrainingManager.GetAllEmployees(departmentId, branchId, positionId, month, levelId).ToList();
        gridTrainingNeed.DataBind();
}
现在我将保留我的设计代码:

 <div class="innerLR">
<div class="seperator bottom" />
    <div class="widget">
<div class="widget-head">
<h4 class="heading">
Send Circulation To
</h4>
</div>
<div class="widget-body">
    <table class="tableShow" cellpadding="3" cellspacing="0">
        <tr>
            <td>
                <asp:DropDownList ID="ddlBranch" runat="server" DataTextField="Name" 
                    DataValueField="BranchId" Width="170px" AppendDataBoundItems="True" 
                    >
                    <asp:ListItem Text="---Select Branch---"/>
                </asp:DropDownList>
               </td>
            <td>
                <asp:DropDownList ID="ddlDepartment" runat="server" AppendDataBoundItems="True" 
                    DataTextField="Name" Width="170px" DataValueField="DepartmentId">
                    <asp:ListItem Text="---Select Department---"/>
                </asp:DropDownList></td>
            <td>
                <asp:DropDownList ID="ddlLevel" runat="server" DataTextField="Name" 
                    DataValueField="LevelId" Width="170px" AppendDataBoundItems="True" 
                    >
                    <asp:ListItem Text="---Select Level---"/>
                </asp:DropDownList></td>
            <td>
                <asp:DropDownList ID="ddlPosition" runat="server" DataTextField="Name" 
                    DataValueField="DesignationId" Width="170px" AppendDataBoundItems="True" 
                    >
                    <asp:ListItem Text="---Select Position---"/>
                </asp:DropDownList></td>
        </tr>
        <tr>
            <td>

                <br />

                Send Circulation To</td>
            <td>
                <br />
                Month</td>
            <td>
                &nbsp;</td>
            <td>
                &nbsp;</td>
        </tr>
        <tr>
            <td>
                <asp:DropDownList ID="ddlCirculation" runat="server" DataTextField="Name" 
                    DataValueField="PositionId" Width="170px" AutoPostBack="true" AppendDataBoundItems="True" 
                    onselectedindexchanged="ddlCirculation_SelectedIndexChanged">
                <asp:ListItem Text="" Value="-1" />
                <asp:ListItem Text="All" Value="0" />
                <asp:ListItem Text="Must Have Worked For" Value="1" />
                </asp:DropDownList></td>
            <td>
                <asp:TextBox ID="txtMonth" Width="150px" runat="server" Enabled="false"></asp:TextBox></td>
            <td>
                <asp:Button ID="btnShow" runat="server" Text="Show" onclick="btnShow_Click" /></td>
            <td>
                &nbsp;</td>
        </tr>
    </table>
    </div>
    </div>




<div>
    <asp:GridView ID="gridTrainingNeed" runat="server" AutoGenerateColumns="False" 
        EnableModelValidation="True" CellPadding="4" ForeColor="#333333" 
        GridLines="None" >
        <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
        <Columns>
            <asp:BoundField DataField="EmployeeId" HeaderText="EID" />
            <asp:BoundField DataField="Name" HeaderText="Name" />
            <asp:BoundField DataField="Branch" HeaderText="Branch" />
            <asp:BoundField DataField="Department" HeaderText="Department" />
            <asp:BoundField DataField="Level" HeaderText="Level" />
            <asp:BoundField DataField="Position" HeaderText="Position" />
            <asp:CommandField HeaderText="Delete" ShowCancelButton="False" 
                ShowDeleteButton="True" />
        </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" />
    </asp:GridView>

</div>
</div>

谢谢。

不要像您这样直接分配
数据源

gridTrainingNeed.DataSource = TrainingManager.GetAllEmployees(departmentId, branchId, positionId, month, levelId).ToList();
将结果存储在页面级列表中。定义页面级列表,如:

//Define List at page/class level
List<Employee> gridList = new List<Employee>();
回发时,您需要将
列表
保存在内存中,使用Session/ViewState等(请参阅)

稍后,在您的
gridTrainingNeed\u RowDeleteing
中,从第行或唯一标识员工的任何字段中获取
ID
。查询列表并从内存中的列表中删除该对象。将数据源重新分配给修改后的列表并调用DataBind

//Define List at page/class level
List<Employee> gridList = new List<Employee>();
gridList = TrainingManager.GetAllEmployees(departmentId, branchId, positionId, month, levelId).ToList();
gridTrainingNeed.DataSource = gridList;
gridTrainingNeed.DataBind();