GridView编辑\更新\合计

这篇博客主要介绍了如何在GridView中处理数据行的编辑、更新操作,并且展示了如何计算行内的总计。在GridView的RowDataBound事件中,通过FindControl方法获取隐藏字段和控件,设置编辑链接,并根据行的状态(编辑或非编辑)来更新总计值。
摘要由CSDN通过智能技术生成
前台代码:
<asp:GridView ID="tabgv" runat="server" DataKeyNames="ysId" ShowFooter="True" OnRowDataBound="GridView1_RowDataBound"
            OnRowCreated="GridView1_RowCreated" AutoGenerateColumns="False" Width="99%" CssClass="gridview"
            EnableModelValidation="True" OnRowCancelingEdit="tabgv_RowCancelingEdit" OnRowEditing="tabgv_RowEditing"
            OnRowUpdating="tabgv_RowUpdating">
            <RowStyle BorderColor="Black" BorderStyle="None" />
            <Columns>
                <asp:BoundField DataField="gsHkrno" HeaderText="项目编号" ReadOnly="True">
                    <ItemStyle Width="5%" HorizontalAlign="Center" />
                    <FooterStyle BorderWidth="0px" />
                </asp:BoundField>
                <asp:TemplateField HeaderText="项目名称">
                    <ItemTemplate>
                        <asp:HyperLink ID="Hyp_gsName" runat="server" ForeColor="Blue" Text='<%# Bind("gsName") %>'></asp:HyperLink>
                    </ItemTemplate>
                    <ItemStyle Width="25%" HorizontalAlign="left" />
                    <FooterTemplate>
                        <asp:Label ID="Label4" runat="server" Font-Bold="True" Text="合 计:" Width="61px"></asp:Label>
                    </FooterTemplate>
                    <FooterStyle BorderColor="Black" BorderWidth="0px" HorizontalAlign="Right" />
                </asp:TemplateField>
                <asp:TemplateField HeaderText="概算金额">
                    <ItemTemplate>
                        <asp:Label ID="labgsMoney" runat="server" Text='<%#Bind("gsMoney", "{0:N2}") %>'></asp:Label>
                    </ItemTemplate>
                    <ItemStyle Width="8%" HorizontalAlign="right" />
                    <FooterTemplate>
                        <asp:Label ID="labtotalgsMoney" runat="server" ForeColor="Red"></asp:Label>
                    </FooterTemplate>
                    <FooterStyle BorderColor="Black" HorizontalAlign="Right" />
                </asp:TemplateField>
                <asp:TemplateField HeaderText="开工至上年底\n累计完成概算">
                    <ItemTemplate>
                        <asp:Label ID="labkgzsndwcGsMoney" runat="server" Text='<%# Bind("footMoney", "{0:N2}") %>'></asp:Label>
                        <asp:HiddenField ID="hdnysYear" runat="server" Value='<%# Eval("ysYear") %> ' />
                        <asp:HiddenFie
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值