71 lines
2.1 KiB
Plaintext
71 lines
2.1 KiB
Plaintext
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="main.aspx.cs" Inherits="Mtxfw.shop._admin.main" %>
|
|||
|
|
|
|||
|
|
<!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>
|
|||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|||
|
|
<title>无标题文档</title>
|
|||
|
|
<link href="./css/style.css" rel="stylesheet" type="text/css" />
|
|||
|
|
<link href="./css/Burgundy.css" rel="stylesheet" type="text/css" />
|
|||
|
|
<script src="./images/JStime.js" type="text/javascript"></script>
|
|||
|
|
<style type="text/css">
|
|||
|
|
.show
|
|||
|
|
{
|
|||
|
|
font-size:14px; font-family:Arial,Tahoma; color:red;
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
</head>
|
|||
|
|
|
|||
|
|
<body>
|
|||
|
|
<form runat="server">
|
|||
|
|
<div class="main">
|
|||
|
|
<div class="bt1">系统探针</div>
|
|||
|
|
<div class="bt2">
|
|||
|
|
<div class="clear"></div>
|
|||
|
|
</div>
|
|||
|
|
<div class="bt3">
|
|||
|
|
<table width="100%" class="addtable">
|
|||
|
|
|
|||
|
|
<tr>
|
|||
|
|
<th width="20%"> 管理员名称:</th>
|
|||
|
|
<td> <asp:Label ID="AdminName" runat="server" ForeColor="Red" EnableViewState="false" /></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<th> 服务器名称:</th>
|
|||
|
|
<td> <%=Server.MachineName.ToString() %></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<th> 服务器IP地址:</th>
|
|||
|
|
<td> <%=Request.ServerVariables["Local_addr"].ToString() %></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<th> 程序所在目录:</th>
|
|||
|
|
<td> <%=Request.PhysicalApplicationPath.ToString() %></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<th> 服务器操作系统:</th>
|
|||
|
|
<td> <%=Environment.OSVersion.ToString() %></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<th> 服务器日期:</th>
|
|||
|
|
<td> <%=DateTime.Now.ToString("yyyy-MM-dd") %> <span style="color:Red;" id="timePlace"></span></td>
|
|||
|
|
</tr>
|
|||
|
|
<tr>
|
|||
|
|
<th> 会员统计:</th>
|
|||
|
|
<td> 当前注册会员共 <asp:Literal ID="Lit_UCount" runat="server" EnableViewState="false" /> 人
|
|||
|
|
</td>
|
|||
|
|
</tr>
|
|||
|
|
|
|||
|
|
|
|||
|
|
<tr>
|
|||
|
|
<th> 缓存管理:</th>
|
|||
|
|
<td> <asp:Button ID="Btn_Delete" runat="server" Text="清空缓存" CssClass="del" />
|
|||
|
|
<asp:Literal ID="Lit_Cache" runat="server" EnableViewState="false" />
|
|||
|
|
</td>
|
|||
|
|
</tr>
|
|||
|
|
</table>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</form>
|
|||
|
|
</body>
|
|||
|
|
</html>
|