SysCome.asp
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:5k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <HTML xmlns="http://www.w3.org/1999/xhtml">
  2. <HEAD>
  3. <TITLE>欢迎进入系统后台</TITLE>
  4. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" />
  5. <link rel="stylesheet" href="Images/CssAdmin.css">
  6. </HEAD>
  7. <!--#include file="CheckAdmin.asp"-->
  8. <BODY>
  9. <div align="center">
  10. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  11.   <tr>
  12.     <td width="392" rowspan="2"><img src="Images/adminmain01.gif" width="392" height="126"></td>
  13.     <td height="114" valign="top" background="Images/adminmain0line2.gif"><table width="100%" border="0" cellspacing="0" cellpadding="0">
  14.       <tr>
  15.         <td height="20"></td>
  16.       </tr>
  17.       <tr>
  18.         <td>[<font color=#ffffff><b><%=session("UserName")%></b></font>]您好,欢迎您进入SK企业网站后台管理系统!</td>
  19.       </tr>
  20.       <tr>
  21.         <td height="8"><img src="Images/adminmain0line.gif" width="283" height="1" /></td>
  22.       </tr>
  23.       <tr>
  24.         <td>
  25. <div id="peinfo1"><script language='javascript' src='http://www.skcms.net/plus/JS.asp?LID=38&ClassID={$ClassID}&ModeID={$ModeID}&ID={$ID}'></script><!--这里是官方的通信调用,为了您的系统安全请别删除!-->
  26. </div>
  27.          </td>
  28.       </tr>
  29.     </table></td>
  30.   </tr>
  31.   <tr>
  32.     <td height="9" valign="bottom" background="Images/adminmain03.gif"><img src="Images/adminmain02.gif" width="23" height="12"></td>
  33.   </tr>
  34. </table>
  35. <br>
  36. <table width="100%" border="0" cellpadding="5" cellspacing="1" bgcolor="#CCCCCC">
  37.   <tr>
  38.     <td height="29" colspan="2" background="Images/menutitle.gif">&nbsp;<strong>服务器信息</strong></td>
  39.   </tr>
  40.   <tr>
  41.     <td width="50%" height="24" bgcolor="#EBF2F9">服务器操作系统:<%=Request.ServerVariables("OS")%></td>
  42.     <td width="50%" height="24" bgcolor="#EBF2F9">网站信息服务软件和版本:<%=Request.ServerVariables("SERVER_SOFTWARE")%></td>
  43.   </tr>
  44.   <tr>
  45.     <td width="50%" height="24" bgcolor="#EBF2F9">脚本解释引擎:<%=ScriptEngine & "/"& ScriptEngineMajorVersion &"."&ScriptEngineMinorVersion&"."& ScriptEngineBuildVersion %></td>
  46.     <td width="50%" height="24" bgcolor="#EBF2F9">脚本超时时间:<%=Server.ScriptTimeout%>秒</td>
  47.   </tr>
  48.   <tr>
  49.     <td height="24" bgcolor="#EBF2F9">CDONTS组件支持:
  50.         <%
  51.   On Error Resume Next
  52.   Server.CreateObject("CDONTS.NewMail")
  53.   if err=0 then 
  54.  response.write("<font color=red>√</font>")
  55.   else
  56.          response.write("<font color=red>×</font>")
  57.   end if
  58.   err=0
  59.     %></td>
  60.     <td height="24" bgcolor="#EBF2F9">Jmail邮箱组件支持:
  61.         <%
  62.   If Not IsObjInstalled(theInstalledObjects(13)) Then
  63.          response.write("<font color=red>×</font>") 
  64.       else
  65.          response.write("<font color=red>√</font>") 
  66.       end if
  67.     %></td>
  68.   </tr>
  69.   <tr>
  70.     <td height="24" bgcolor="#EBF2F9">返回服务器处理请求的端口:<%=Request.ServerVariables("SERVER_PORT")%></td>
  71.     <td height="24" bgcolor="#EBF2F9">协议的名称和版本:<%=Request.ServerVariables("SERVER_PROTOCOL")%></td>
  72.   </tr>
  73.   <tr>
  74.     <td height="24" bgcolor="#EBF2F9">服务器 CPU 数量:<%=Request.ServerVariables("NUMBER_OF_PROCESSORS")%></td>
  75.     <td height="24" bgcolor="#EBF2F9">FSO文本文件读写:
  76.         <%
  77. On Error Resume Next
  78. Server.CreateObject("Scripting.FileSystemObject")
  79. if err=0 then 
  80.    response.write("<font color=red>√</font>,支持")
  81. else
  82.        response.write("<font color=red>×</font>,不支持")
  83. end if 
  84. err=0
  85.     %></td>
  86.   </tr>
  87.   <tr>
  88.     <td height="24" bgcolor="#EBF2F9">客户端操作系统:
  89.         <%
  90.       dim thesoft,vOS
  91.       thesoft=Request.ServerVariables("HTTP_USER_AGENT")
  92.       if instr(thesoft,"Windows NT 5.0") then
  93.      vOS="Windows 2000"
  94.       elseif instr(thesoft,"Windows NT 5.2") then
  95.      vOs="Windows 2003"
  96.       elseif instr(thesoft,"Windows NT 5.1") then
  97.          vOs="Windows XP"
  98.       elseif instr(thesoft,"Windows NT") then
  99.          vOs="Windows NT"
  100.       elseif instr(thesoft,"Windows 9") then
  101.      vOs="Windows 9x"
  102.       elseif instr(thesoft,"unix") or instr(thesoft,"linux") or instr(thesoft,"SunOS") or instr(thesoft,"BSD") then
  103.      vOs="类Unix"
  104.       elseif instr(thesoft,"Mac") then
  105.      vOs="Mac"
  106.       else
  107.       vOs="Other"
  108.       end if
  109.       response.Write(vOs)
  110.     %></td>
  111.     <td height="24" bgcolor="#EBF2F9">站点物理路径:<%=request.ServerVariables("APPL_PHYSICAL_PATH")%></td>
  112.   </tr>
  113.   <tr>
  114.     <td width="50%" height="24" bgcolor="#EBF2F9">域名IP:http://<%=Request.ServerVariables("SERVER_NAME")%>&nbsp;/&nbsp;<%=Request.ServerVariables("LOCAL_ADDR")%></td>
  115.     <td width="50%" height="24" bgcolor="#EBF2F9">虚拟路径:<%=Request.ServerVariables("SCRIPT_NAME")%></td>
  116.   </tr>
  117.   <tr>
  118.     <td height="24" colspan="2" bgcolor="#D7E4F7">客户端浏览器要求: IE5.5或以上,并关闭所有弹窗的阻拦程序;服务器建议采用:Windows 2000或Windows 2003 Server。</td>
  119.   </tr>
  120. </table>
  121. <div align="left"><br>
  122.     <a href="http://web.dns-w.cn/bbs/register.php" target="_blank"><img src="Images/xxan1.gif" width="200" height="50" border="0"></a><br>
  123.   <br>
  124. </div></div>
  125. </BODY>
  126. </HTML>