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.3 KiB

  1. <% '==================================================
  2. ' Microsoft Server Appliance
  3. '
  4. ' Serves task wizard/propsheet frameset
  5. '
  6. ' Copyright (c) 1999 - 2000 Microsoft Corporation. All rights reserved.
  7. '================================================== %>
  8. <!-- #include file="sh_page.asp" -->
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=<%=GetCharSet()%>">
  12. <title><%=Request.QueryString("Title")%></title>
  13. <!-- ' (c) 1999 - 2000 Microsoft Corporation. All rights reserved. -->
  14. </head>
  15. <%
  16. Dim strURL
  17. strURL = Request.QueryString("URL")
  18. if InStr(strURL, "?") = 0 then
  19. '? not found in URL
  20. strURL = strURL & "?"
  21. else
  22. strURL = strURL & "&"
  23. end if
  24. strURL = strURL & "ReturnURL=" & Server.URLEncode(Request.QueryString("ReturnURL"))
  25. %>
  26. <frameset rows="*,46" framespacing=0 border="false" frameborder="0">
  27. <frame name="main" scrolling="auto" src="<%=strURL%>" noresize marginwidth="0" marginheight="0">
  28. <frame name="footer" scrolling="no" src="sh_task.asp?PageName=shTaskFooter" noresize frameborder=1 marginwidth="0" marginheight="0">
  29. <noframes>
  30. <body>
  31. <p ID=PID_01>This page uses frames, but your browser doesn't support them.</p>
  32. </body>
  33. </noframes>
  34. </frameset>
  35. </html>