?? saleroomguide.aspx
字號:
?<%@ Page Language="C#" MasterPageFile="~/Admin/Guide.master" AutoEventWireup="true"
Codebehind="SaleroomGuide.aspx.cs" Inherits="PowerEasy.WebSite.Admin.Shop.SaleroomGuide"
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>
<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>
<input id="BtnSearch" type="button" class="inputbutton" value="查詢" onclick="OpenMainRight()" />
</li>
</ul>
</div>
<div class="guideexpand" onclick="Switch(this)">
銷售額按月統計</div>
<div class="guidesearch">
<ul>
<li>
<asp:DropDownList ID="DropYear2" runat="server" DataValueField="key" DataTextField="value"
Style="width: 140px">
</asp:DropDownList>
</li>
<li>
<input id="BtnSearch2" type="button" class="inputbutton" value="查詢" onclick="OpenMainRight2()" />
</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 DropMonth = document.getElementById("<%=DropMonth.ClientID%>");
var DropMonth_Index = DropMonth.selectedIndex;
var DropMonth_Value = DropMonth.options[DropMonth_Index].value;
JumpToMainRight("Saleroom.aspx?&Year=" + DropYear_Value + "&Month=" + DropMonth_Value);
}
function OpenMainRight2()
{
var DropYear2 = document.getElementById("<%=DropYear2.ClientID%>");
var DropYear2_Index = DropYear2.selectedIndex;
var DropYear2_Value = DropYear2.options[DropYear2_Index].value;
JumpToMainRight("Saleroom.aspx?&SaleroomType=1&Year=" + DropYear2_Value);
}
</script>
</asp:Content>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -