- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
SysCome.asp
资源名称:1.rar [点击查看]
上传用户:yrf020
上传日期:2007-07-24
资源大小:1287k
文件大小:6k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
HTML/CSS
- <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
- <% 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 2006-2008 - Hokilly.com-STUDIO" />
- <META NAME="Author" CONTENT="红金羚软件,www.hokilly.com" />
- <META NAME="Keywords" CONTENT="" />
- <META NAME="Description" CONTENT="" />
- <link rel="stylesheet" href="Images/CssAdmin.css">
- <style type="text/css">
- <!--
- .STYLE1 {color: #3399FF}
- .STYLE2 { color: #009900;
- font-weight: bold;
- }
- -->
- </style>
- </HEAD>
- <!--#include file="CheckAdmin.asp"-->
- <BODY>
- <div align="center">
- <font color="#FF0000"><strong><br>
- </strong></font>
- <table width="720" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#6ab6b6">
- <tr class="border">
- <td height="24"><font color="#FFFFFF"><img src="Images/Explain.gif" width="18" height="18" border="0" align="absmiddle"> <strong>企业网站管理系统程序探针</strong></font></td>
- </tr>
- <tr class="border">
- <td bgcolor="#eafefe"> 程序使用服务器环境要求(关键部分): <br />
- 1、支持ASP:<font color=green><b>√</b></font> 2、支持FSO:
- <%
- On Error Resume Next
- Server.CreateObject("Scripting.FileSystemObject")
- if err=0 then
- response.write("<font color=green><b>√</b></font>")
- else
- response.write("<font color=red><b>×</b></font>")
- end if
- err=0
- %>
- 3、支持ACCESS数据库:
- <%
- On Error Resume Next
- Server.CreateObject("adodb.connection")
- if err=0 then
- response.write("<font color=green><b>√</b></font>")
- else
- response.write("<font color=red><b>×</b></font>")
- end if
- err=0
- %>
- <br>
- 如果以上3条都显示<font color=green><b>√</b></font>,说明您的服务器支持我们的程序,如有问题可以与我们联系,我们有优质空间提供。QQ:4596500 Tel:013567213275 </td>
- </tr>
- </table>
- <font color="#FF0000"><strong><br>
- </strong></font>
- <table width="720" border="0" cellpadding="3" cellspacing="1" bgcolor="#6ab6b6">
- <tr>
- <td height="24" colspan="2"><font color="#FFFFFF"><img src="Images/Explain.gif" width="18" height="18" border="0" align="absmiddle"> <strong>服务器信息</strong></font></td>
- </tr>
- <tr>
- <td width="50%" height="24" bgcolor="#eafefe">服务器操作系统:<%=Request.ServerVariables("OS")%></td>
- <td width="50%" height="24" bgcolor="#eafefe">网站信息服务软件和版本:<%=Request.ServerVariables("SERVER_SOFTWARE")%></td>
- </tr>
- <tr>
- <td width="50%" height="24" bgcolor="#eafefe">脚本解释引擎:<%=ScriptEngine & "/"& ScriptEngineMajorVersion &"."&ScriptEngineMinorVersion&"."& ScriptEngineBuildVersion %></td>
- <td width="50%" height="24" bgcolor="#eafefe">脚本超时时间:<%=Server.ScriptTimeout%>秒</td>
- </tr>
- <tr>
- <td height="24" bgcolor="#eafefe">CDONTS组件支持:<%
- On Error Resume Next
- Server.CreateObject("CDONTS.NewMail")
- if err=0 then
- response.write("<font color=green><b>√</b></font>")
- else
- response.write("<font color=red><b>×</b></font>")
- end if
- err=0
- %></td>
- <td height="24" bgcolor="#eafefe">Jmail邮箱组件支持:<%
- On Error Resume Next
- Server.CreateObject("JMail.SMTPMail")
- if err=0 then
- response.write("<font color=green><b>√</b></font>,支持")
- else
- response.write("<font color=red><b>×</b></font>,不支持")
- end if
- err=0
- %></td>
- </tr>
- <tr>
- <td height="24" bgcolor="#eafefe">返回服务器处理请求的端口:<%=Request.ServerVariables("SERVER_PORT")%></td>
- <td height="24" bgcolor="#eafefe">协议的名称和版本:<%=Request.ServerVariables("SERVER_PROTOCOL")%></td>
- </tr>
- <tr>
- <td height="24" bgcolor="#eafefe">服务器 CPU 数量:<%=Request.ServerVariables("NUMBER_OF_PROCESSORS")%></td>
- <td height="24" bgcolor="#eafefe">FSO文本文件读写:<%
- On Error Resume Next
- Server.CreateObject("Scripting.FileSystemObject")
- if err=0 then
- response.write("<font color=green><b>√</b></font>,支持")
- else
- response.write("<font color=red><b>×</b></font>,不支持")
- end if
- err=0
- %></td>
- </tr>
- <tr>
- <td height="24" bgcolor="#eafefe">客户端操作系统:<%
- 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="#eafefe">站点物理路径:<%=request.ServerVariables("APPL_PHYSICAL_PATH")%></td>
- </tr>
- <tr>
- <td width="50%" height="24" bgcolor="#eafefe">域名IP:http://<%=Request.ServerVariables("SERVER_NAME")%> / <%=Request.ServerVariables("LOCAL_ADDR")%></td>
- <td width="50%" height="24" bgcolor="#eafefe">虚拟路径:<%=Request.ServerVariables("SCRIPT_NAME")%></td>
- </tr>
- <tr>
- <td height="24" colspan="2" bgcolor="#bbe5e5">客户端浏览器要求: IE5.5或以上,并关闭所有弹窗的阻拦程序;服务器建议采用:Windows 2000或Windows 2003 Server。</td>
- </tr>
- </table>
- <br>
- </div>
- </BODY>
- </HTML>