0

我现在正在做这个任务,我被困在这个问题上,据我了解,我必须在我的 gridview 中添加一个按钮字段,当按下时,它会更新状态,并减少我数据库中的 FabricStock。我已经有了gridview,其他一切都完成了,我可以从我的sql中检索数据,现在剩下按钮字段,我应该如何开始这样做?我已经阅读了很多关于更新数据行的其他文章,但显然这些不是我想要的,我对按钮字段的了解是 o

这些是我的 gridview aspx 代码。

<asp:GridView ID="gvFabrics" runat="server" CellPadding="3" GridLines="None" BackColor="White" BorderColor="White" BorderStyle="Ridge" BorderWidth="2px" CellSpacing="1" Font-Names="Lao UI" AutoGenerateColumns="False" Width="976px" AllowPaging="True" OnPageIndexChanging="gvFabrics_PageIndexChanging" PageSize="5">
        <Columns>
        <asp:BoundField DataField="ProductionPlanID" HeaderText="Production Plan ID" />
            <asp:BoundField DataField="FashionStyleID" HeaderText="Fashion Style ID" />
            <asp:BoundField DataField="FabricID" HeaderText="Fabric ID" />
            <asp:BoundField DataField="WarehouseID" HeaderText="Warehouse ID" />
            <asp:BoundField DataField="PPStatus" HeaderText="Status" />
            <asp:BoundField DataField="PPFabricReqd" HeaderText="PP Fabric Reqd" />
            <asp:BoundField DataField="PPFabricIssued" HeaderText="PP Fabric Issued" />
            <asp:ButtonField ButtonType="Button" HeaderText="Update Fabric" Text="Update" />
        </Columns>
        <FooterStyle BackColor="#C6C3C6" Font-Bold="True" ForeColor="Black" />
        <HeaderStyle BackColor="#4A3C8C" Font-Bold="True" ForeColor="#E7E7FF" />
        <PagerStyle BackColor="#C6C3C6" ForeColor="Black" HorizontalAlign="Right" />
        <RowStyle BackColor="#DEDFDE" ForeColor="Black" />
        <SelectedRowStyle BackColor="#9471DE" Font-Bold="True" ForeColor="#333333" />
        <SortedAscendingCellStyle BackColor="#F1F1F1" />
        <SortedAscendingHeaderStyle BackColor="#594B9C" />
        <SortedDescendingCellStyle BackColor="#CAC9C9" />
        <SortedDescendingHeaderStyle BackColor="#33276A" />
    </asp:GridView>`

`

4

1 回答 1

0

在侧网格视图中编辑更新和删除。这可能会有所帮助

于 2014-07-28T09:19:57.150 回答