LogoutForADSSO.jsp 487 Bytes
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<script type="text/javascript"> 
  var agt=navigator.userAgent.toLowerCase();  
  // IE clear HTTP Authentication  
  if (agt.indexOf("msie") != -1) {  
    document.execCommand("ClearAuthenticationCache");  
  }  
  else {  
    //非ie 请清理缓存后登录
    alert("请清除Cookie及缓存数据再登录");
  }  
  window.location = "/login/Login.jsp?logintype=1&message=60";  
</script>