📄 admin_index_main.asp
字号:
<!--#include file="../conn.asp"-->
<!--#include file="../inc/function.asp"-->
<!--#include file="Admin_ChkPurview.asp"-->
<%
Dim theInstalledObjects(5)
theInstalledObjects(0) = "Scripting.FileSystemObject"
theInstalledObjects(1) = "adodb.connection"
theInstalledObjects(2) = "JMail.SMTPMail"
theInstalledObjects(3) = "CDONTS.NewMail"
%>
<html>
<head>
<title><%=SiteName & "--后台管理首页"%></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="Admin_Style.css">
</head>
<body leftmargin="2" topmargin="0" marginwidth="0" marginheight="0">
<table cellpadding="2" cellspacing="1" border="0" width="100%" class="border" align=center>
<tr align="center">
<td height=25 colspan=2 class="topbg"><strong><%=SiteName%>----后台管理首页</strong></tr>
<tr>
<td width="100" class="tdbg" height=23><strong>管理快捷方式:</strong></td>
<td class="tdbg"><a href="Admin_SiteConfig.asp">网站信息配置</a>
| <a href="Admin_Counter.asp">网站统计分析</a> | <a href="Admin_User.asp">注册用户管理</a>
| <a href="Admin_Admin.asp">管理员管理</a></td>
</tr>
</table>
<br>
<table cellpadding="2" cellspacing="1" border="0" width="100%" class="border" align=center>
<tr align="center">
<td height=25 colspan=2 class="topbg"><strong>服 务 器 信 息</strong>
<tr>
<td width="38%" class="tdbg" height=23>服务器类型:<%=Request.ServerVariables("OS")%>(IP:<%=Request.ServerVariables("LOCAL_ADDR")%>)</td>
<td width="62%" class="tdbg">脚本解释引擎:<%=ScriptEngine & "/"& ScriptEngineMajorVersion &"."&ScriptEngineMinorVersion&"."& ScriptEngineBuildVersion %></td>
</tr>
<tr>
<td width="38%" class="tdbg" height=23>FSO文本读写:
<%If Not IsObjInstalled(theInstalledObjects(0)) Then%>
<font color="red"><b>×</b></font>
<%else%>
<b>√</b>
<%end if%>
</td>
<td width="62%" class="tdbg">数据库使用:
<%If Not IsObjInstalled(theInstalledObjects(1)) Then%>
<font color="red"><b>×</b></font>
<%else%>
<b>√</b>
<%end if%>
</td>
</tr>
<tr>
<td width="38%" class="tdbg" height=23>Jmail组件支持:
<%If Not IsObjInstalled(theInstalledObjects(2)) Then%>
<font color="red"><b>×</b></font>
<%else%>
<b>√</b>
<%end if%>
</td>
<td width="62%" class="tdbg">CDONTS组件支持:
<%If Not IsObjInstalled(theInstalledObjects(3)) Then%>
<font color="red"><b>×</b></font>
<%else%>
<b>√</b>
<%end if%>
</td>
</tr>
<tr>
<td class="tdbg" height=23></td>
<td align="right" class="tdbg"><a href="Admin_ServerInfo.asp">点此查看更详细的服务器信息>>></a></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -