www.gusucode.com > 共享世纪内容管理系统 2.1 build 080704 全站开源版 > error.asp

    <%if request("code")<>"" and request("code")=request.cookies("downError") then
MDBpath="admin/"%>
<!--#include file="admin/mdb_path_down.asp"-->
<%
set rs=server.CreateObject("ADODB.RecordSet")
  sql="select error from down where id="&request("id")
  rs.open sql,conn,1,3
  if not rs.eof then
    if rs("error")<>"" then
      rs("error").value=rs("error").value+1
    else    
      rs("error")=1
    end if
    rs.update
  end if
  rs.close
  set rs=nothing
conn.close
set conn=nothing
Response.cookies("downError")=request("id")
end if
if request.cookies("downError")<>request("id") then
  code=Now()*2/2
  Response.cookies("downError")=code
else
ccc=1
end if
%>
<html>
<head>
<title>下载天地</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
td{font-size:9pt;line-height:140%} 
body{font-size:9pt;line-height:140%} 

a:link          { color: #0033CC; text-decoration: none }
a:visited       { color: #0033CC; text-decoration: none }
a:active        { color: #FF0000; text-decoration: none }
a:hover         { color: #000000; text-decoration: underline}
</style>
</head>
<body topmargin="8">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="100%" height="100%">
  <tr>
    <td width="100%" align="center">
  <%if request("code")=request.cookies("downError") or ccc=1 then%>
  <script LANGUAGE="JavaScript">
<!--
setTimeout('window.close();', 5000);
// -->
  </script>
   <font color="#FF0000">谢谢你的提醒!<br>我们会尽快修复,请过段时间再下载此软件!</font>
  <%else%>
    <form action="error.asp?id=<%=request("id")%>&code=<%=code%>" method="post" name="form">
      <input type="submit" value="报告错误" name="B1"></p>
    </form>
<%end if%>    </td>
  </tr>
</table>
</body>

</html>