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

📄 send_goods.aspx

📁 网上销售订单管理系统借助现代信息技术和管理理论
💻 ASPX
字号:
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Send_Goods.aspx.cs" Inherits="Send_Goods" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder_title" Runat="Server">
<span style="font-size:12px; color:#FFFFFF;font-weight: bold;">货物发送</span>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder_Pages" Runat="Server">
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:SellOrder_ConnectionString %>" SelectCommand="SELECT * FROM [sell] WHERE (([Type] = @Type) AND ([SendMail] = @SendMail)) ORDER BY [id] DESC">
        <SelectParameters>
            <asp:Parameter DefaultValue="销售信息" Name="Type" Type="String" />
            <asp:Parameter DefaultValue="2" Name="SendMail" Type="Int32" />
        </SelectParameters>
    </asp:SqlDataSource>
    <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False"
        DataSourceID="SqlDataSource1" CellPadding="4" DataKeyNames="id" ForeColor="#333333" GridLines="None" Width="98%" EmptyDataText="暂无数据!">
        <Columns>
            <asp:BoundField DataField="CommodityName" HeaderText="商品名称" SortExpression="CommodityName" />
            <asp:BoundField DataField="Number" HeaderText="数量" SortExpression="Number" />
            <asp:BoundField DataField="Pirce" HeaderText="单价" SortExpression="Pirce" />
            <asp:BoundField DataField="kehu" HeaderText="客户名称" SortExpression="kehu" />
            <asp:BoundField DataField="AddTime" HeaderText="登记时间" SortExpression="AddTime" />
            <asp:HyperLinkField DataNavigateUrlFields="id" DataNavigateUrlFormatString="Send_Goods.aspx?Id={0}" HeaderText="发送货物" NavigateUrl="Send_Goods.aspx" Text="&lt;div id=&quot;de&quot; onclick=&quot;JavaScript:return confirm('确认发送货物?')&quot;&gt;物流配送&lt;/div&gt;" />
        </Columns>
        <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
        <RowStyle BackColor="#F7F6F3" ForeColor="#333333" Height="30px" />
        <EditRowStyle BackColor="#999999" />
        <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
        <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
        <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" Height="35px" />
        <AlternatingRowStyle BackColor="White" ForeColor="#284775" Height="30px" />
    </asp:GridView>
</asp:Content>

⌨️ 快捷键说明

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