cd_rom.aspx
资源名称:WebSite1.rar [点击查看]
上传用户:vtryaojia
上传日期:2020-04-18
资源大小:1214k
文件大小:2k
源码类别:
SCSI/ASPI
开发平台:
Others
- <%@ Page Language="C#"MasterPageFile="~/MasterPage2.master" AutoEventWireup="true" CodeFile="cd_rom.aspx.cs" Inherits="cd_rom" %>
- <asp:Content ID="Content1" runat="server" ContentPlaceHolderID="ContentPlaceHolder1">
- <asp:DetailsView ID="DetailsView1" runat="server" Height="50px" Width="488px" AutoGenerateRows="False" DataSourceID="AccessDataSource1">
- <Fields>
- <asp:TemplateField>
- <ItemTemplate>
- <img src="<%#Eval("GoodsUrl")%>" onerror="this.src=this.src.replace('~/','')" width="200" />
- </ItemTemplate>
- </asp:TemplateField>
- <asp:BoundField DataField="GoodsName" HeaderText="名称" SortExpression="GoodsName" />
- <asp:BoundField DataField="GoodsBrand" HeaderText="品牌" SortExpression="GoodsBrand" />
- <asp:BoundField DataField="MarketPrice" HeaderText="价格" SortExpression="MarketPrice" />
- <asp:BoundField DataField="GoodsUnit" HeaderText="数量" SortExpression="GoodsUnit" />
- <asp:BoundField DataField="Breed" HeaderText="光驱种类" SortExpression="Breed" />
- </Fields>
- </asp:DetailsView>
- <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="添加到我的购物车"
- Width="188px" /><br />
- <asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/zzu.mdb"
- SelectCommand="SELECT [GoodsName], [GoodsBrand], [MarketPrice], [GoodsUnit], [Breed],[GoodsUrl] FROM [cd_rom]">
- </asp:AccessDataSource>
- </asp:Content>