SoFunction
Updated on 2025-03-09

Solution to "Internet explore cannot open an internet site terminated"


<html> 
<head> 
<title> xxxxxxxxxxxx </title> 
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
<meta name="author" content="Fengyan,CNLEI" />
<meta name="copyright" content="@ , " /> 
<meta name="keywords" content="" /> 
<meta name="description" content="" /> 
</head> 
<body> 
xxxxxxxxxxxxxxxxxx 
<script type="text/javascript"> 
 <!-- 
(function(){ 
  function init(){ 
$WIN().create({//Create complex HTML structure
      id:"lWindow_Reg", 
title: "Register new user",
      type  :"AJAX", 
      innerHTML:'ex_reg.html' 
      },{ 
      top:"50px", 
      left:"270px", 
      width:"560px" 
      }); 
  }; 
if(!){//Directly initialized by non-IE browser
    init(); 
  } else { 
// Under IE, prevent the browser from prompting "internet explore cannot open the internet site, operation has been terminated"
    if (=="complete"){ 
      init(); 
    } else { 
      =function(){ 
        if(=="complete")init(); 
      } 
    } 
  } 
})(); 
--> 
</script> 
xxxxxxxxxxxxxxxxxx 
</body> 
</html>