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.

40 lines
1.1 KiB

  1. <%@ Language=VBScript %>
  2. <% '==================================================
  3. ' Microsoft Server Appliance
  4. ' Status Page Details Pagelet placeholder page. This is the default page that
  5. ' is shown in the status page's details pagelet, the pagelet in the lower center
  6. ' portion of the status page. We use an empty placeholder as a workaround
  7. ' for a rendering problem with Navigator 6.0 on Linux, which when not provided
  8. ' with content provides gray disabled content section.
  9. '
  10. ' Copyright (c) Microsoft Corporation. All rights reserved.
  11. '================================================== %>
  12. <% Option Explicit %>
  13. <!-- #include file="inc_framework.asp" -->
  14. <%
  15. Dim page
  16. Call SA_CreatePage(SA_DEFAULT, SA_DEFAULT, PT_PAGELET, page)
  17. Call SA_ShowPage(page)
  18. Public Function OnInitPage(ByRef pageIn, ByRef EventArg)
  19. OnInitPage = TRUE
  20. End Function
  21. Public Function OnServePageletPage(ByRef PageIn, ByRef EventArg)
  22. OnServePageletPage = TRUE
  23. Call ServeCommonElements()
  24. End Function
  25. Private Function ServeCommonElements()
  26. %>
  27. <script>
  28. function Init()
  29. {
  30. }
  31. </script>
  32. <%
  33. End Function
  34. %>