更新gridview行添加旧值和新值

时间:2013-10-08 10:56:41

标签: c# asp.net linq

我有一个Gridview,里面有另外一个嵌套GridView。当我按下加号按钮时,嵌套的GridView会使用JavScript展开。嵌套的GridView使用TextBox控件在编辑模式上展开。因此,当TextBox上的用户输入时,可以使用更新按钮更新单元格。我的问题是,当我按下更新按钮时,更新发生但不是我期望的。例如,如果一个单元格的初始值是“我的名字是彼得”,我已完成编辑“我没有名字”将保存的新值正是这样:“我的名字是彼得,我不喜欢没有名字“。嵌套GridView的数据绑定发生在父GridView DataBound事件上。 我的代码:

<asp:GridView ID="GridView1" runat="server" AllowPaging="True" OnPageIndexChanging="gridView_PageIndexChanging"
    AutoGenerateColumns="False"  DataKeyNames="myitemID"
    OnRowDataBound="GridView_RowDataBound">
        <Columns>
            <asp:TemplateField>
                <ItemTemplate>
                    <img alt = "" style="cursor: pointer" src="../plus.png" />
                    <asp:GridView ID="nestedGridView"   runat="server"
                        AutoGenerateColumns="False"
                        DataKeyNames="mynestedID">
                        <Columns>
                            <asp:TemplateField HeaderText="nestedID" Visible="false"  ItemStyle-Width="20%"
                                SortExpression="nesteditemID">
                                <ItemTemplate>
                                    <asp:Label ID="nesteditemID" runat="server" Text='<%# Bind("nesteditemID") %>'></asp:Label>
                                </ItemTemplate>
                            </asp:TemplateField>
                            <asp:TemplateField HeaderText="Name"  ItemStyle-Width="20%"
                                SortExpression="Name">
                                    <ItemTemplate>
                                        <asp:TextBox ID="name" TextMode="MultiLine" Width="80%" Rows="3"  runat="server" Text='<%# Bind("Name") %>'></asp:TextBox>
                                    </ItemTemplate>
                                </asp:TemplateField>
                                <asp:Panel ID="mypanel" runat="server">
                                    <table>
                                        <tr>
                                            <td>
                                                &nbsp;
                                                <asp:ImageButton ID="ImageButton2" OnClick="updatename_Click" ImageUrl="~/images/update.jpg" Width="15px" Height="15px" runat="server"></asp:ImageButton>
                                            </td>
                                        </tr>
                                    </table>
                                    </asp:Panel>
                                </ItemTemplate>
                            </asp:TemplateField>
                        </Columns>
                    </asp:GridView>
                </asp:Panel>
            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField HeaderText="myitemID" InsertVisible="False"
            SortExpression="myitemID" Visible="False">
            <ItemTemplate>
                <asp:Label ID="myitemID" runat="server" Text='<%# Bind("myitemID") %>'></asp:Label>
            </ItemTemplate>
        </asp:TemplateField>
        <asp:TemplateField HeaderText="ItemName"  ItemStyle-Width="20%"
            SortExpression="ItemName">
            <ItemTemplate>
                <asp:Label ID="ItemName" runat="server" Text='<%# Bind("ItemName") %>'></asp:Label>
            </ItemTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>

cs code:

protected void updatename_Click(object sender, EventArgs e)
{
    GridViewRow masterrow = (GridViewRow)(sender as Control).Parent.Parent.Parent.Parent.Parent.Parent.Parent.Parent;
    GridViewRow row = (GridViewRow)(sender as Control).Parent.Parent.Parent;
    int index = row.RowIndex;
    int mi = masterrow.RowIndex;
    int i = index;
    GridView nestedGridView = (GridView)GridView1.Rows[mi].FindControl("nestedGridView");

    Label nestedID = (Label)nestedGridView.Rows[index].FindControl("nestedID");

    int sbid = Convert.ToInt32(nestedID.Text);
    TextBox name = (TextBox)nestedGridView.Rows[index].FindControl("name");
    string myname = Convert.ToString(name.Text);

    //update name with the new value
    Nesteditem updatenesteditem = mylinqobjects.Nesteditems.Single(p => p.nesteditemID == sbid);
    if (!string.IsNullOrEmpty(myname))
    {
        updatenesteditem.nesteditemName = myname;
        mylinqobjects.SubmitChanges();
    }
}

1 个答案:

答案 0 :(得分:0)

删除旧文本替换当前文本。

string myname = name.Text.Substring(name.Text.LastIndexOf(",")+1);

尝试了所有可能性,但由于嵌套网格视图渲染及其限制,我们只能像上面那样做。

任何其他解决方案,请提供。