⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 syscome.asp

📁 最好的自助建站系统!!最好的自助建站系统!!
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
'┌┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┐
'┊                              ┊
'┊       互连在线企业网站管理系统(W2006)       ┊
'┊                              ┊
'  版权所有 csys.com.cn
'
'  程序制作 互连在线工作室
'
'  相关网址 [产品介绍]http://www.csys.com.cn
'
'  演示网址 http://www.webchina.com.cn
'┊                              ┊
'└┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄   ┊
'└┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┘
%>
<% Option Explicit %>
<HTML xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
<TITLE>欢迎进入系统后台</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" />
<META NAME="copyright" CONTENT="Copyright 2004-2008 - csys.com.cn-STUDIO" />
<META NAME="Author" CONTENT="互连在线网络技术工作室,www.csys.com.cn" />
<META NAME="Keywords" CONTENT="" />
<META NAME="Description" CONTENT="" />
<link rel="stylesheet" href="Images/CssAdmin.css">
</HEAD>
<!--#include file="CheckAdmin.asp"-->
<BODY>
<div align="center">
<font color="#FF0000"><strong>欢迎使用互连在线企业网站管理系统 -DIY2007<br><br></strong></font>
<table width="720" border="0" cellpadding="3" cellspacing="1" bgcolor="#6298E1">
  <tr>
    <td width="50%" height="24" bgcolor="#EBF2F9">当前使用版本:DIY2007 V01 </td>
    <td width="50%" height="24" bgcolor="#EBF2F9">&nbsp;</td>
  </tr>
</table>
<br>
<table width="720" border="0" cellpadding="3" cellspacing="1" bgcolor="#6298E1">
  <tr>
    <td height="24" colspan="2"><font color="#FFFFFF"><img src="Images/Explain.gif" width="18" height="18" border="0" align="absmiddle">&nbsp;<strong>服务器信息</strong></font></td>
    </tr>
  <tr>
    <td width="50%" height="24" bgcolor="#EBF2F9">服务器操作系统:<%=Request.ServerVariables("OS")%></td>
    <td width="50%" height="24" bgcolor="#EBF2F9">网站信息服务软件和版本:<%=Request.ServerVariables("SERVER_SOFTWARE")%></td>
  </tr>
  <tr>
    <td width="50%" height="24" bgcolor="#EBF2F9">脚本解释引擎:<%=ScriptEngine & "/"& ScriptEngineMajorVersion &"."&ScriptEngineMinorVersion&"."& ScriptEngineBuildVersion %></td>
    <td width="50%" height="24" bgcolor="#EBF2F9">脚本超时时间:<%=Server.ScriptTimeout%>秒</td>
  </tr>
  <tr>
    <td height="24" bgcolor="#EBF2F9">CDONTS组件支持:<%
	  On Error Resume Next
	  Server.CreateObject("CDONTS.NewMail")
	  if err=0 then 
		 response.write("<font color=red>√</font>")
	  else
         response.write("<font color=red>×</font>")
	  end if
	  err=0
    %></td>
    <td height="24" bgcolor="#EBF2F9">Jmail邮箱组件支持:<%
	  If Not IsObjInstalled(theInstalledObjects(13)) Then
         response.write("<font color=red>×</font>") 
      else
         response.write("<font color=red>√</font>") 
      end if
    %></td>
  </tr>
  <tr>
    <td height="24" bgcolor="#EBF2F9">返回服务器处理请求的端口:<%=Request.ServerVariables("SERVER_PORT")%></td>
    <td height="24" bgcolor="#EBF2F9">协议的名称和版本:<%=Request.ServerVariables("SERVER_PROTOCOL")%></td>
  </tr>
  <tr>
    <td height="24" bgcolor="#EBF2F9">服务器 CPU 数量:<%=Request.ServerVariables("NUMBER_OF_PROCESSORS")%></td>
    <td height="24" bgcolor="#EBF2F9">FSO文本文件读写:<%
	On Error Resume Next
	Server.CreateObject("Scripting.FileSystemObject")
	if err=0 then 
	   response.write("<font color=red>√</font>,支持")
	else
       response.write("<font color=red>×</font>,不支持")
	end if 
	err=0
    %></td>
  </tr>
  <tr>
    <td height="24" bgcolor="#EBF2F9">客户端操作系统:<%
      dim thesoft,vOS
      thesoft=Request.ServerVariables("HTTP_USER_AGENT")
      if instr(thesoft,"Windows NT 5.0") then
	     vOS="Windows 2000"
      elseif instr(thesoft,"Windows NT 5.2") then
	     vOs="Windows 2003"
      elseif instr(thesoft,"Windows NT 5.1") then
         vOs="Windows XP"
      elseif instr(thesoft,"Windows NT") then
       	 vOs="Windows NT"
      elseif instr(thesoft,"Windows 9") then
	     vOs="Windows 9x"
      elseif instr(thesoft,"unix") or instr(thesoft,"linux") or instr(thesoft,"SunOS") or instr(thesoft,"BSD") then
	     vOs="类Unix"
      elseif instr(thesoft,"Mac") then
	     vOs="Mac"
      else
     	vOs="Other"
      end if
      response.Write(vOs)
    %></td>
    <td height="24" bgcolor="#EBF2F9">站点物理路径:<%=request.ServerVariables("APPL_PHYSICAL_PATH")%></td>
  </tr>
  <tr>
    <td width="50%" height="24" bgcolor="#EBF2F9">域名IP:http://<%=Request.ServerVariables("SERVER_NAME")%>&nbsp;/&nbsp;<%=Request.ServerVariables("LOCAL_ADDR")%></td>
    <td width="50%" height="24" bgcolor="#EBF2F9">虚拟路径:<%=Request.ServerVariables("SCRIPT_NAME")%></td>
  </tr>
  <tr>
    <td height="24" colspan="2" bgcolor="#D7E4F7">客户端浏览器要求: IE5.5或以上,并关闭所有弹窗的阻拦程序;服务器建议采用:Windows 2000或Windows 2003 Server。</td>
    </tr>
</table>
<br>
<table width="720" border="0" cellpadding="3" cellspacing="1" bgcolor="#6298E1">
  <tr>
    <td height="24" colspan="4"><font color="#FFFFFF"><img src="Images/Explain.gif" width="18" height="18" border="0" align="absmiddle">&nbsp;<strong>系统开发,版权所有,授权使用</strong></font></td>
    </tr>
  <tr>
    <td width="10%" height="24" bgcolor="#EBF2F9">系统开发:</td>
    <td width="40%" bgcolor="#EBF2F9">互连在线网络技术工作室</td>
    <td width="10%" height="24" bgcolor="#EBF2F9">产品负责:</td>
    <td width="40%" bgcolor="#EBF2F9">互连在线开发组</td>
  </tr>
  <tr>
    <td width="10%" height="24" bgcolor="#EBF2F9">E-mail:</td>
    <td width="40%" height="24" bgcolor="#EBF2F9">61128110@163.com</td>
    <td width="10%" height="24" bgcolor="#EBF2F9">产品咨询:</td>
    <td width="40%" height="24" bgcolor="#EBF2F9"> QQ(61128110) </td>
  </tr>
  <tr>
    <td height="24" bgcolor="#EBF2F9">官方网站:</td>
    <td height="24" bgcolor="#EBF2F9"><a href="http://www.csys.com.cn" target="_blank">www.csys.com.cn</a></td>
    <td height="24" bgcolor="#EBF2F9">演示站点:</td>
    <td height="24" bgcolor="#EBF2F9"><a href="http://test.csys.com.cn" target="_blank">test.csys.com.cn</a></td>
  </tr>
  <tr>
    <td height="24" bgcolor="#EBF2F9">帮助中心:</td>
    <td height="24" bgcolor="#EBF2F9"><a href="http://help.csys.com.cn" target="_blank">help.csys.com.cn</a></td>
    <td height="24" bgcolor="#EBF2F9">技术交流:</td>
    <td height="24" bgcolor="#EBF2F9"><a href="http://bbs.csys.com.cn" target="_blank">bbs.csys.com.cn</a></td>
  </tr>
  <tr>
    <td height="24" bgcolor="#D7E4F7">授权使用:</td>
    <td height="24" bgcolor="#D7E4F7">网络科技有限公司</td>
    <td height="24" bgcolor="#D7E4F7">版权所有</td>
    <td height="24" bgcolor="#D7E4F7">©2004-2008 CopyRight <a href="http://www.csys.com.cn" target="_blank">518COM</a> Co.,LTD</td>
  </tr>
</table>
</div>
</BODY>
</HTML>

⌨️ 快捷键说明

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