default.aspx

来自「通用权限管理平台」· ASPX 代码 · 共 55 行

ASPX
55
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="ControlPanel_Default"
    StylesheetTheme="MainStyle" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>会员管理</title>

    <script>
					window.onload = loadCols;
					
					function loadCols()
					{
						try { fstMain.load("mnpFrames.data"); }
						catch(e) { return; }
						var colWidth = fstMain.getAttribute("colWidth");
						if (colWidth)
						{
				
							fstMain.cols = colWidth + ",*";
				
							if (colWidth == "0")
								top.mainFrame.MNP_showtoc.style.display = "";
						}				
					}
					
					function saveCols()
					{
						fstMain.setAttribute("colWidth", MNPSearchFrame.offsetWidth);
						try { fstMain.save("mnpFrames.data"); }
						catch(e) {}
					}
    </script>

</head>
<frameset rows="30,*" cols="*" frameborder="no" border="0" framespacing="0">
    <frame src="Top.aspx" name="topFrame" scrolling="No" noresize="noresize" id="topFrame"
        title="topFrame" />
    <frameset id="fstMain" rows="*" cols="168,*" framespacing="5" frameborder="1" style="behavior: url(#default#userdata)"
        onresize="saveCols()">
        <frameset rows="52,*" cols="*" framespacing="0" frameborder="0" id="fstMenuColumn">
            <frame src="Search.aspx" name="MNPSearchFrame" scrolling="no" id="MNPSearchFrame"
                title="leftFrame" />
            <frame name="MenuFrame" scrolling="auto" src="Menu.aspx" />
        </frameset>
        <frame src="Main.aspx" name="mainFrame" id="mainFrame" noresize="noresize" frameborder="0"
            bordercolor="DarkBlue" scrolling="auto" title="mainFrame" />
    </frameset>
    <noframes>
        <body>
        </body>
    </noframes>
</frameset>
</html>

⌨️ 快捷键说明

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