shopitem.aspx
来自「ASP.NET2.0(C#篇)经典教程的源码...本源码很好的实现了购物车...」· ASPX 代码 · 共 20 行
ASPX
20 行
<%@ Page trace="false" Language="C#" MasterPageFile="~/site.master" AutoEventWireup="true" codefile="ShopItem.aspx.cs" Inherits="ShopItem" title="Shop Item" %>
<%@ import Namespace="Wrox.Commerce" %>
<asp:Content ID="Content1" ContentPlaceHolderID="mainContent" Runat="server">
<asp:sqldatasource id="SqlDataSource1" runat="server"
selectcommand="SELECT * FROM [Products] WHERE ([ProductID] = @ProductID)"
connectionstring="<%$ ConnectionStrings:WroxUnited %>">
<SelectParameters>
<asp:QueryStringParameter Name="ProductID" QueryStringField="ProductID" Type="Int32"></asp:QueryStringParameter>
</SelectParameters>
</asp:sqldatasource>
<asp:formview id="FormView1" runat="server" datakeynames="ProductID" datasourceid="SqlDataSource1">
<ItemTemplate>
<asp:Label Visible="false" Text='<%# Eval("PictureURL") %>' runat="server" ID="PictureURLLabel" />
<asp:Image ImageUrl='<%# Eval("PictureURL", "~/ProductImages/{0}") %>' runat="server" id="PictureURL" />
<asp:Label Text='<%# Eval("Name") %>' runat="server" id="NameLabel" style="font-size:larger; font-weight:bold"/><br />
<asp:Label Text='<%# Eval("Description") %>' runat="server" id="DescriptionLabel" /><br />
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?