写了个页面,之前运行很正常。但是当下午再次测试时发现Page_Load事件不执行了,具体的代码如下:<%@ Page Language="C#" AutoEventWireup="True" CodeFile="SQLDataImport.aspx.cs" Inherits="SQLDataImport" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>无标题页</title>
     <script type="text/javascript">
          setTimeout('winClose()','300000')
          function winClose()
          {
             window.opener=null;
             window.close();
          }
     </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
    </div>
    </form>
</body>
</html>
请各位大虾帮帮忙了!