?? memberorderlinessguide.aspx
字號(hào):
?<%@ Page Language="C#" MasterPageFile="~/Admin/Guide.master" AutoEventWireup="true"
Codebehind="MemberOrderlinessGuide.aspx.cs" Inherits="PowerEasy.WebSite.Admin.Shop.MemberOrderlinessGuide"
Title="無(wú)標(biāo)題頁(yè)" %>
<asp:Content ID="Content1" ContentPlaceHolderID="CphTitle" runat="server">
會(huì)員購(gòu)物規(guī)律分析
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="CphSubMenu" runat="server">
<div class="guideexpand" onclick="Switch(this)">
快速查找</div>
<div class="guidesearch">
<ul>
<li>查詢時(shí)間: </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>會(huì)員名: </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>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -