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

📄 memberorderlinessguide.aspx

📁 动易SiteFactory&#8482 网上商店系统1.0源代码
💻 ASPX
字号:
<%@ Page Language="C#" MasterPageFile="~/Admin/Guide.master" AutoEventWireup="true"
    Codebehind="MemberOrderlinessGuide.aspx.cs" Inherits="PowerEasy.WebSite.Admin.Shop.MemberOrderlinessGuide"
    Title="无标题页" %>

<asp:Content ID="Content1" ContentPlaceHolderID="CphTitle" runat="server">
    会员购物规律分析
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="CphSubMenu" runat="server">
    <div class="guideexpand" onclick="Switch(this)">
        快速查找</div>
    <div class="guidesearch">
        <ul>
            <li>查询时间: </li>
            <li>
                <asp:DropDownList ID="DropYear" runat="server" DataValueField="key" DataTextField="value">
                </asp:DropDownList>
                <asp:DropDownList ID="DropMonth" runat="server" DataValueField="key" DataTextField="value">
                </asp:DropDownList>
            </li>
            <li>会员名: </li>
            <li>
                <asp:TextBox runat="server" ID="TxtUserName"></asp:TextBox>
                <input id="BtnSearch" type="button" class="inputbutton" value="查询" onclick="OpenMainRight()" />
            </li>
        </ul>
    </div>

    <script type="text/javascript">
    function OpenMainRight()
    {
        var DropYear = document.getElementById("<%=DropYear.ClientID%>");           
        var DropYear_Index = DropYear.selectedIndex;                
        var DropYear_Value = DropYear.options[DropYear_Index].value;   
        var userName = document.getElementById("<%=TxtUserName.ClientID%>").value;           
  
        var DropMonth = document.getElementById("<%=DropMonth.ClientID%>");           
        var DropMonth_Index = DropMonth.selectedIndex;              
        var DropMonth_Value = DropMonth.options[DropMonth_Index].value;  
     
        JumpToMainRight("MemberOrderliness.aspx?IsAll=false&Year=" + DropYear_Value + "&Month=" + DropMonth_Value + "&UserName=" + escape(userName));
    }
    </script>

</asp:Content>

⌨️ 快捷键说明

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