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.

59 lines
1.5 KiB

  1. <%@ LANGUAGE = VBScript %>
  2. <% Option Explicit %>
  3. <!-- #include file="directives.inc" -->
  4. <!--#include file="iiadmls.str"-->
  5. <!--#include file="iiset.inc"-->
  6. <!--#include file="iisetfnt.inc"-->
  7. <HTML>
  8. <HEAD>
  9. <TITLE></TITLE>
  10. </HEAD>
  11. <BODY BGCOLOR="<%= Session("BGCOLOR") %>" TOPMARGIN=5 TEXT="#000000" LINK="#FFFFFF" >
  12. <FORM NAME="userform">
  13. <TABLE>
  14. <TR><TD VALIGN="top"><%= sFont("","","",True) %>
  15. <%= writeSelect("selTrustee", 5, "", true) %>
  16. <SCRIPT LANGUAGE="JavaScript">
  17. var nodeList = parent.head.cachedList;
  18. var numEnabled = 0;
  19. for (i=0;i<nodeList.length;i++){
  20. if (!nodeList[i].deleted){
  21. document.write("<OPTION VALUE='"+i+"'>"+nodeList[i].trustee);
  22. }
  23. }
  24. <%
  25. ' Navigator doesn't like this spacing hack.
  26. if Session("IsIE")then
  27. %>
  28. document.write("<OPTION>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
  29. <% end if %>
  30. document.write("</SELECT>");
  31. </SCRIPT>
  32. <P>
  33. </FONT>
  34. </TD>
  35. <TD VALIGN = "top">
  36. <%= sFont("","","",True) %>
  37. <% if Session("IsAdmin") then %>
  38. <INPUT TYPE="Button" VALUE="<%= L_ADD_TEXT %>" onClick="parent.head.listFunc.addItem();"><P>
  39. <INPUT TYPE="Button" VALUE="<%= L_REMOVE_TEXT %>" onClick="parent.head.listFunc.delItem();">
  40. <% end if %>
  41. </FONT>
  42. </TD>
  43. </TR>
  44. </TABLE>
  45. </FORM>
  46. </BLOCKQUOTE>
  47. </BODY>
  48. </HTML>