Leaked source code of windows server 2003
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.

44 lines
1.2 KiB

  1. <%@ Language=VBScript %>
  2. <% '==================================================
  3. ' Microsoft Server Appliance
  4. ' Default Footer page
  5. ' Copyright (c) Microsoft Corporation. All rights reserved.
  6. '==================================================
  7. %>
  8. <!-- #include file="inc_framework.asp" -->
  9. <html>
  10. <!-- Copyright (c) Microsoft Corporation. All rights reserved.-->
  11. <meta http-equiv="Content-Type" content="text/html; charset=<%=GetCharSet()%>">
  12. <meta http-equiv="PRAGMA" content="NO-CACHE">
  13. <script language='javascript'>
  14. function Init()
  15. {
  16. try
  17. {
  18. if ( top.main != null )
  19. {
  20. //
  21. // If the top frame has been initialize already that means this
  22. // page has been loaded as a result of the User pressing the
  23. // Back button in the browser. Task pages require a two state
  24. // process to load so the first Back operation results in this page
  25. // being reloaded. What we really want is to go back to the page
  26. // before this so we fire the window.history.back() method one
  27. // more time to cause that result.
  28. //
  29. if ( true == top.main.SA_IsPageInitialized())
  30. {
  31. window.history.back();
  32. }
  33. }
  34. }
  35. catch(oException)
  36. {
  37. }
  38. }
  39. </script>
  40. </head>
  41. <body onload='Init();'>
  42. </body>
  43. </html>