Files
2026-02-07 15:48:27 +08:00

71 lines
2.1 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<%@ 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%">&nbsp;管理员名称:</th>
<td>&nbsp;<asp:Label ID="AdminName" runat="server" ForeColor="Red" EnableViewState="false" /></td>
</tr>
<tr>
<th>&nbsp;服务器名称:</th>
<td>&nbsp;<%=Server.MachineName.ToString() %></td>
</tr>
<tr>
<th>&nbsp;服务器IP地址</th>
<td>&nbsp;<%=Request.ServerVariables["Local_addr"].ToString() %></td>
</tr>
<tr>
<th>&nbsp;程序所在目录:</th>
<td>&nbsp;<%=Request.PhysicalApplicationPath.ToString() %></td>
</tr>
<tr>
<th>&nbsp;服务器操作系统:</th>
<td>&nbsp;<%=Environment.OSVersion.ToString() %></td>
</tr>
<tr>
<th>&nbsp;服务器日期:</th>
<td>&nbsp;<%=DateTime.Now.ToString("yyyy-MM-dd") %> <span style="color:Red;" id="timePlace"></span></td>
</tr>
<tr>
<th>&nbsp;会员统计:</th>
<td>&nbsp;当前注册会员共 <asp:Literal ID="Lit_UCount" runat="server" EnableViewState="false" /> 人
</td>
</tr>
<tr>
<th>&nbsp;缓存管理:</th>
<td>&nbsp;<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>