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

📄 account.aspx

📁 简介:功能描述:商品的分类显示、浏览商品、用户登录、选购和调整购物车、集中结算、存储订单、查看订单
💻 ASPX
字号:
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="account.aspx.cs" Inherits="account" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
    客户标志:<asp:TextBox ID="TextBox1" runat="server" Width="75px"></asp:TextBox>
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="汇总" />
    <asp:TextBox ID="TextBox2" runat="server" Width="63px"></asp:TextBox>
    &nbsp; &nbsp; &nbsp;&nbsp;
    <asp:Button ID="Button2" runat="server" Text="存入订单" OnClick="Button2_Click" /><br />
    <asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None">
        <Columns>
            <asp:TemplateField HeaderText="确认">
                <ItemTemplate>
                    <asp:CheckBox ID="CheckBox1" runat="server" Checked="True" />
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
        <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
        <RowStyle BackColor="#EFF3FB" />
        <EditRowStyle BackColor="#2461BF" />
        <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
        <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
        <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
        <AlternatingRowStyle BackColor="White" />
    </asp:GridView>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:shoppingConnectionString %>"
        InsertCommand="INSERT INTO [order] (customid, productid, productname, quantityperunit, unitprice, ordernum, orderdatetime) VALUES (@Param1, @Param2, @Param3, @Param4, @Param5, @Param6, @Param7)"
        ProviderName="<%$ ConnectionStrings:shoppingConnectionString.ProviderName %>">
        <InsertParameters>
            <asp:Parameter Name="Param1" />
            <asp:Parameter Name="Param2" />
            <asp:Parameter Name="Param3" />
            <asp:Parameter Name="Param4" />
            <asp:Parameter Name="Param5" />
            <asp:Parameter Name="Param6" />
        </InsertParameters>
    </asp:SqlDataSource>
</asp:Content>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -