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.

49 lines
1.5 KiB

  1. <% '==================================================
  2. ' Microsoft Server Appliance
  3. '
  4. ' Serves task wizard/propsheet frameset
  5. '
  6. ' Copyright (c) Microsoft Corporation. All rights reserved.
  7. '================================================== %>
  8. <!-- #include file="inc_framework.asp">
  9. <!-- include file="sh_page.asp" -->
  10. <html>
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=<%=GetCharSet()%>">
  13. <title>
  14. <%
  15. if SA_IsIE() Then
  16. Response.Write(Server.HTMLEncode(Request.QueryString("Title")))
  17. Else
  18. Response.Write(UTF8ToUnicode(Request.QueryString("Title")))
  19. End If
  20. %>
  21. </title>
  22. <!-- Copyright (c) Microsoft Corporation. All rights reserved.-->
  23. </head>
  24. <%
  25. Dim strURL
  26. strURL = Request.QueryString("URL")
  27. if InStr(strURL, "?") = 0 then
  28. '? not found in URL
  29. strURL = strURL & "?"
  30. else
  31. strURL = strURL & "&"
  32. end if
  33. strURL = strURL & "ReturnURL=" & Server.URLEncode(Request.QueryString("ReturnURL"))
  34. SA_StoreTableParameters()
  35. %>
  36. <frameset rows="*,75" framespacing=0 border="false" frameborder="0">
  37. <frame name="main" scrolling="yes" src="<%=strURL%>" noresize marginwidth="0" marginheight="0">
  38. <frame name="footer" scrolling="auto" src="<%=m_VirtualRoot%>sh_defaultfooter.asp" noresize frameborder=0 marginwidth="0" marginheight="0">
  39. <noframes>
  40. <BODY>
  41. <p ID=PID_01>This page uses frames, but your browser doesn't support them.</p>
  42. </BODY>
  43. </noframes>
  44. </frameset>
  45. </html>