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.

45 lines
1.0 KiB

  1. <%@ LANGUAGE="VBSCRIPT"%>
  2. <%Response.Expires = 0%>
  3. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
  4. <html>
  5. <head>
  6. <title>Registry Pages</title>
  7. <%
  8. Dim strState
  9. strState = Request.QueryString("Page")
  10. Dim strBitmap
  11. strBitmap = "localui_booting.bmp"
  12. Dim strLogo
  13. strLogo = "localui_salogo.bmp"
  14. if strState = "Booting" Then
  15. strLogo = "localui_startinglogo.bmp"
  16. End If
  17. If strState = "Shutdown" Then
  18. strBitmap = "localui_shutting_down.bmp"
  19. ElseIf strState = "Booting" Then
  20. strBitmap = "localui_booting.bmp"
  21. ElseIf strState = "Update" Then
  22. strBitmap = "localui_update.bmp"
  23. ElseIf strState = "Ready" Then
  24. strBitmap = "localui_ready.bmp"
  25. End If
  26. %>
  27. </head>
  28. <body RIGHTMARGIN=0 LEFTMARGIN=0>
  29. <IMG id="logo" STYLE="position:absolute; top:0; left=0;" SRC="<%=strLogo%>"
  30. BORDER=0>
  31. <IMG STYLE="position:absolute; top:48; left=0;" SRC="<%=strBitmap%>" BORDER=0>
  32. strState
  33. </body>
  34. </html>