%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 122.154.253.140 / Your IP : 216.73.216.46 Web Server : Microsoft-IIS/7.5 System : Windows NT SERVER02 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.6.31 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Windows/Microsoft.NET/Framework64/v2.0.50727/ASP.NETWebAdminFiles/ |
Upload File : |
<%@ Master className="WebAdminMasterPage" %>
<%@ Register TagPrefix="uc1" TagName="navigationBar" Src="~/navigationBar.ascx" %>
<%@ Import Namespace="System.Web.Administration" %>
<script runat="server" language="cs">
private string _directionality;
public string Directionality {
get {
if (String.IsNullOrEmpty(_directionality)) {
_directionality = ((string) GetGlobalResourceObject("GlobalResources", "HtmlDirectionality")).ToLower();
}
return _directionality;
}
}
public void Page_Init(object sender, EventArgs e) {
((WebAdminPage)Page).NavigationBar = navigationBar;
}
public void Page_Load() {
string reqAppPath = Request.ApplicationPath;
linkElement.Text = "<link rel=\"stylesheet\" type=\"text/css\" href=\"" + reqAppPath + "/webAdminStyles.css\"/>";
}
public void SetNavigationBarSelectedIndex(int sel) {
navigationBar.SetSelectedIndex(sel);
}
public void SetNavigationBarVisibility(bool visible) {
navigationBar.Visible = visible;
}
</script>
<html dir="<%=Directionality%>">
<head>
<title><asp:literal runat="server" text="<%$ Resources: GlobalResources, PageTitle %>" /> </title>
<asp:literal runat="server" id="linkElement"/>
</head>
<body ms_positioning="GridLayout" leftmargin="0" topmargin="0">
<form id="Form1" method="post" runat="server">
<table align="left" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr><td valign="top">
<uc1:navigationBar id="navigationBar" runat="server"/>
</td></tr>
<tr>
<td colspan="2" height="" class="bodyText" valign="top">
<asp:contentPlaceHolder runat="server" id="content"/>
</td>
</tr>
<tr>
<td align="right" class="buttonRow" colspan="2" height="35" valign="bottom">
<table align="right" width="" height="" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<asp:contentPlaceHolder runat="server" id="buttonRow"/>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="bottomRow" colspan="2" height="31" valign="top">
</td>
</tr>
</table>
</form>
</body>
</html>
<!-- <asp:contentPlaceHolder runat="server" id="titleBar"/> -->