Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
754 B

  1. <%@ LANGUAGE = VBScript %>
  2. <% Option Explicit %>
  3. <!-- #include file="directives.inc" -->
  4. <%
  5. Dim pg
  6. pg=Request.QueryString("pg")
  7. %>
  8. <!--#include file="iisetfnt.inc"-->
  9. <HTML>
  10. <HEAD>
  11. <TITLE>Untitled</TITLE>
  12. </HEAD>
  13. <SCRIPT LANGUAGE="JavaScript">
  14. function Globals(){
  15. this.helpFileName="ipxmain.htm";
  16. this.helpDir="http://<%= Request.ServerVariables("SERVER_NAME") %>/iishelp/iis/htm/core/"
  17. this.updated=false;
  18. this.popwindow = null;
  19. }
  20. Global=new Globals();
  21. function loadPage(){
  22. top.main.location.href = "<%= pg %>";
  23. }
  24. function unload_popwindow()
  25. {
  26. if(Global.popwindow != null)
  27. Global.popwindow.close();
  28. }
  29. </SCRIPT>
  30. <BODY OnLoad="loadPage();" BGCOLOR="<%= Session("BGCOLOR") %>" onunload="unload_popwindow();">
  31. </BODY>
  32. </HTML>