选中一天数据根据业务编号 移除GridView1 里面的数据
<asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333" Width="100%"
GridLines="None" AutoGenerateColumns="False" DataKeyNames="WAREHOUSECODE"
onrowcommand="GridView1_RowCommand"
onrowdatabound="GridView1_RowDataBound">
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<Columns>
<asp:ButtonField Text="SingleClick" CommandName="SingleClick" Visible="false" />
<asp:ButtonField Text="DoubleClick" CommandName="DoubleClick" Visible="false" />
<asp:BoundField DataField="WHRECEIPTCODE" HeaderText="进仓编号" ><ItemStyle CssClass="juzuo" /></asp:BoundField>
<asp:BoundField HeaderText="客户编号" DataField="CLIENTCODE" ><ItemStyle CssClass="juzuo" /></asp:BoundField>
<asp:BoundField HeaderText="业务编号" DataField="WAREHOUSECODE" ><ItemStyle CssClass="juzuo" /></asp:BoundField>
<%-- <asp:BoundField HeaderText="东方编号" DataField="WORKCODE" />--%>
<asp:BoundField HeaderText="提单号" DataField="BLCODE" ><ItemStyle CssClass="juzuo" /></asp:BoundField>
<asp:BoundField HeaderText="件数" DataField="COUNT_1" ><ItemStyle CssClass="juyou" /></asp:BoundField>
<asp:BoundField HeaderText="毛重" DataField="UNITWEIGHT" ><ItemStyle CssClass="juyou" /></asp:BoundField>
<asp:BoundField HeaderText="体积" DataField="CUBE_1" ><ItemStyle CssClass="juyou" /></asp:BoundField>
<asp:BoundField HeaderText="品名" DataField="CARGONAME_1" ><ItemStyle CssClass="juzuo" /></asp:BoundField>
<asp:BoundField HeaderText="仓位号" DataField="PositionCode" ><ItemStyle CssClass="juzuo" /></asp:BoundField>
<asp:ButtonField ButtonType="Button" Text="部分出仓" CommandName="SomeOut" />
</Columns>
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<EditRowStyle BackColor="#999999" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
</asp:GridView>
里面会有多个客户编号,但是我想根据一个客户边编号去除相应的数据?