⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shopitem.aspx

📁 ASP.NET2.0(C#篇)经典教程的源码...本源码很好的实现了购物车....编码规范和类的设计具有很好的借鉴性!
💻 ASPX
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -