Source code of Windows XP (NT5)
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.

83 lines
1.5 KiB

  1. <%@ LANGUAGE = VBScript %>
  2. <% Option Explicit %>
  3. <!-- #include file="directives.inc" -->
  4. <% if Session("FONTSIZE") = "" then %>
  5. <!--#include file="iito.inc"-->
  6. <% else %>
  7. <!--#include file="iidef.str"-->
  8. <%
  9. On Error Resume Next
  10. Dim path,currentobj,Inst
  11. path=Session("spath")
  12. Session("path")=path
  13. Session("SpecObj")=""
  14. Session("SpecProps")=""
  15. Set currentobj=GetObject(path)
  16. %>
  17. <!--#include file="iiset.inc"-->
  18. <!--#include file="iisetfnt.inc"-->
  19. <HTML>
  20. <HEAD>
  21. <TITLE></TITLE>
  22. <SCRIPT LANGUAGE="JavaScript">
  23. top.title.Global.helpFileName="iipz_17";
  24. </SCRIPT>
  25. </HEAD>
  26. <BODY BGCOLOR="<%= Session("BGCOLOR") %>" TOPMARGIN=5 TEXT="#000000" >
  27. <TABLE WIDTH = 500 BORDER = 0>
  28. <TR>
  29. <TD>
  30. <FORM NAME="userform">
  31. <%= sFont("","","",True) %>
  32. <B><%= L_MASTERPROPS_TEXT %></B>
  33. <P>
  34. <IMG SRC="images/hr.gif" WIDTH=5 HEIGHT=2 BORDER=0 ALIGN="middle">
  35. <%= L_DEFAULTFTPSITE_TEXT %>
  36. <IMG SRC="images/hr.gif" WIDTH=<%= L_DEFAULTFTPSITE_HR %> HEIGHT=2 BORDER=0 ALIGN="middle">
  37. <P>
  38. <BLOCKQUOTE>
  39. <TABLE WIDTH = 400>
  40. <TR>
  41. <TD>
  42. <%= sFont("","","",True) %>
  43. <%= L_DEFFTPTEXT_TEXT %>
  44. <P>
  45. </FONT>
  46. </TD>
  47. </TR>
  48. </TABLE>
  49. <%= writeSelect("DownlevelAdminInstance", "","top.title.Global.updated=true;", false) %>
  50. <%
  51. For Each Inst in currentobj
  52. if currentobj.DownlevelAdminInstance = CInt(Inst.Name) then
  53. Response.write "<Option Selected VALUE='" & Inst.Name & "'>" & Inst.ServerComment
  54. else
  55. Response.write "<Option VALUE='" & Inst.Name & "'>" & Inst.ServerComment
  56. end if
  57. Next
  58. %>
  59. </SELECT>
  60. </BLOCKQUOTE>
  61. </FORM>
  62. </FONT>
  63. </TD>
  64. </TR>
  65. </TABLE>
  66. </BODY>
  67. </HTML>
  68. <% end if %>