ProductsList.aspx
资源名称:yjal.rar [点击查看]
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:2k
源码类别:
Email客户端
开发平台:
Visual C++
- <%@ Page Language="C#" MasterPageFile="~/AppMaster.master" AutoEventWireup="true" CodeFile="ProductsList.aspx.cs" Inherits="ProductsList" Title="商品信息" %>
- <asp:Content ID="Content2" ContentPlaceHolderID="phMain" Runat="Server">
- <asp:DataList ID="DLrefinement" runat="server" DataKeyField="GoodsID" DataSourceID="SqlDataSource1" OnItemCommand="DLrefinement_ItemCommand1">
- <ItemTemplate>
- <asp:Image ID="Image1" runat="server" ForeColor="Blue" ImageUrl='<%# "~/Image/"+Eval("GoodsBrand") %>' /><br />
- <asp:Label ID="Label1" runat="server" ForeColor="Blue" Text='<%# Eval("caption") %>'></asp:Label><br />
- <asp:Image ID="Image2" runat="server" ImageUrl='<%# "~/Image/"+Eval("GoodsPic") %>' /><br />
- <asp:Label ID="Label2" runat="server" Font-Size="X-Large" Text='<%# Eval("GoodsName") %>'></asp:Label><br />
- <asp:TextBox ID="TextBox1" runat="server" Height="200px" Text='<%# Eval("GoodsDescription") %>'
- TextMode="MultiLine" Width="450px"></asp:TextBox><br /><br />
- 市场价:<asp:Label ID="Label3" runat="server" Text='<%# Eval("MarketPrice") %>'></asp:Label>¥<br />
- 会员价:<asp:Label ID="Label4" runat="server" Text='<%# Eval("MemberPrice") %>'></asp:Label>¥<br /><br />
- <asp:Button ID="Button1" runat="server" CommandArgument='<%# DataBinder.Eval(Container.DataItem,"GoodsWeight")+"|"+DataBinder.Eval(Container.DataItem,"MemberPrice") %>'
- CommandName="buyGoods" Text="添加到购物车 " />
- <asp:HyperLink ID="HyperLink1" NavigateUrl="~/produce.aspx" runat="server">查看其它商品</asp:HyperLink><br />
- </ItemTemplate>
- </asp:DataList>
- <asp:SqlDataSource ID="SqlDataSource1" runat="server"
- ConnectionString="<%$ ConnectionStrings:TZroomConnectionString %>"
- SelectCommand="SELECT * FROM [tb_GoodsInfo] WHERE ([GoodsID] = @GoodsID)">
- <SelectParameters>
- <asp:QueryStringParameter DefaultValue="1" Name="GoodsID" QueryStringField="id" Type="Int16" />
- </SelectParameters>
- </asp:SqlDataSource>
- </asp:Content>