delete.aspx
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:2k
源码类别:
Email客户端
开发平台:
Visual C++
- <%@ Page Language="C#" MasterPageFile="~/Admin/MasterPage.master" AutoEventWireup="true" CodeFile="delete.aspx.cs" Inherits="Manage_delete" Title="商品删除" %>
- <asp:Content ID="Content1" ContentPlaceHolderID="main" Runat="Server">
- <asp:DataList ID="DataList1" runat="server" DataSourceID="SqlDataSource1" RepeatColumns="6" BackColor="#DEBA84" BorderColor="#DEBA84" BorderStyle="None" BorderWidth="1px" CellPadding="3" GridLines="Both" CellSpacing="2">
- <ItemTemplate>
- <br />
- 商品名字:
- <asp:Label ID="GoodsNameLabel" runat="server" Text='<%# Eval("GoodsName") %>'></asp:Label><br />
- 商品重量:
- <asp:Label ID="GoodsWeightLabel" runat="server" Text='<%# Eval("GoodsWeight") %>'></asp:Label><br />
- 市场价格:
- <asp:Label ID="MarketPriceLabel" runat="server" Text='<%# Eval("MarketPrice") %>'></asp:Label><br />
- 会员价格:
- <asp:Label ID="MemberPriceLabel" runat="server" Text='<%# Eval("MemberPrice") %>'></asp:Label><br />
- <asp:Button ID="delbtn" runat="server" Text="删除" CommandArgument='<%# Eval("GoodsID") %>' OnCommand="delbtn_Command" />
- </ItemTemplate>
- <FooterStyle BackColor="#F7DFB5" ForeColor="#8C4510" />
- <ItemStyle BackColor="#FFF7E7" ForeColor="#8C4510" />
- <SelectedItemStyle BackColor="#738A9C" Font-Bold="True" ForeColor="White" />
- <HeaderStyle BackColor="#A55129" Font-Bold="True" ForeColor="White" />
- </asp:DataList>
- <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:TZroomConnectionString %>"
- SelectCommand="SELECT * FROM [tb_GoodsInfo]"></asp:SqlDataSource>
- </asp:Content>