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

📄 cartview.aspx

📁 网上书店
💻 ASPX
字号:
<%@ Page Language="c#" Inherits="MyBookShop.Web.CartView" CodeFile="CartView.aspx.cs" %>

<%@ Register TagPrefix="MyBookShop" TagName="HeaderMenu" Src="UserControls/HeaderMenu.ascx" %>
<%@ Register TagPrefix="MyBookShop" TagName="UserCheck" Src="UserControls/UserCheck.ascx" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>浏览购物篮</title>
    <link href="Styles/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="Form1" method="post" runat="server">
        <table id="Table1" style="z-index: 101; left: 8px; width: 504px; position: absolute;
            top: 8px; height: 136px" cellspacing="0" cellpadding="0" width="504" border="0">
            <tr>
                <td align="center">
                    <MyBookShop:HeaderMenu ID="headerMenu" runat="server" OnLoad="headerMenu_Load"></MyBookShop:HeaderMenu>
                    <MyBookShop:UserCheck ID="userCheck1" runat="server" OnLoad="userCheck1_Load" ></MyBookShop:UserCheck>
                </td>
            </tr>
            <tr>
                <td style="height: 21px">
                    &gt;&gt;购买图书&gt;&gt;我的购物</td>
            </tr>
            <tr>
                <td valign="top" align="center" style="height: 119px">
                    <asp:GridView ID="GV" runat="server" AutoGenerateColumns="False" OnRowCancelingEdit="GV_RowCancelingEdit"
                        OnRowCommand="GV_RowCommand" OnRowDeleting="GV_RowDeleting" OnRowEditing="GV_RowEditing"
                        OnRowUpdating="GV_RowUpdating" Width="96%">
                        <Columns>
                            <asp:BoundField DataField="CartId" ReadOnly="True" HeaderText="购物车编号" />
                            <asp:BoundField DataField="BookName" ReadOnly="True" HeaderText="图书名称" />
                            <asp:BoundField DataField="Amount" HeaderText="数量" />
                            <asp:CommandField ShowEditButton="True" />
                            <asp:CommandField ShowDeleteButton="True" />
                        </Columns>
                    </asp:GridView>
                </td>
            </tr>
            <tr>
                <td align="right" style="background-color:royalblue; height: 20px;">
                    <asp:Button ID="ButtonBack" runat="server" Text="继续选购" Width="65px" OnClick="ButtonBack_Click">
                    </asp:Button>&nbsp;&nbsp;&nbsp; &nbsp;
                    <asp:Button ID="ButtonBuy" runat="server" Text="去结账" Width="77px" OnClick="ButtonBuy_Click">
                    </asp:Button></td>
            </tr>
        </table>
        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
        &nbsp; &nbsp;
    </form>
</body>
</html>

⌨️ 快捷键说明

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