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.

46 lines
2.0 KiB

  1. <input type="hidden" name="ParentADSPath" value="<%= Request("ParentADSPath") %>">
  2. <% if iThisPage <= LAST then %>
  3. <!-- Hidden Fields for persistence -->
  4. <% if iThisPage <> SITETYPE then %>
  5. <input type="hidden" name="SiteType" value = "<%= Request("SiteType") %>">
  6. <input type="hidden" name="NodeType" value="<%= Request("NodeType") %>">
  7. <% end if %>
  8. <% if iThisPage <> NODENAME then %>
  9. <input type="hidden" name="NodeName" value="<%= Request("NodeName") %>">
  10. <% end if %>
  11. <% if iThisPage <> BINDINGS then %>
  12. <input type="hidden" name="IPAddress" value="<%= Request("IPAddress") %>">
  13. <input type="hidden" name="TCPPort" value="<%= Request("TCPPort") %>">
  14. <input type="hidden" name="SSLPort" value="<%= Request("SSLPort") %>">
  15. <% end if %>
  16. <% if iThisPage <> PATHNAME then %>
  17. <input type="hidden" name="VRPath" value="<%= Request("VRPath") %>">
  18. <% if Request("NodeName") = "" then %>
  19. <input type="hidden" name="AllowAnon" value="on">
  20. <% else %>
  21. <input type="hidden" name="AllowAnon" value="<%= Request("AllowAnon") %>">
  22. <% end if %>
  23. <% end if %>
  24. <% if iThisPage <> ACCESSPERMS then %>
  25. <% 'Default to Read/Script to on. Since check values are blank unless they are on %>
  26. <% 'we will check the NodeName field, which is required, to determine if the values %>
  27. <% 'have been set before. Once NodeName if filled, we'll persist the changed value %>
  28. <% if Request("NodeName") = "" then %>
  29. <input type="hidden" name="AllowRead" value="on">
  30. <input type="hidden" name="AllowScript" value="on">
  31. <% else %>
  32. <input type="hidden" name="AllowRead" value="<%= Request("AllowRead") %>">
  33. <input type="hidden" name="AllowScript" value="<%= Request("AllowScript") %>">
  34. <% end if %>
  35. <input type="hidden" name="AllowExecute" value="<%= Request("AllowExecute") %>">
  36. <input type="hidden" name="AllowWrite" value="<%= Request("AllowWrite") %>">
  37. <input type="hidden" name="AllowDirBrowsing" value="<%= Request("AllowDirBrowsing") %>">
  38. <% end if %>
  39. <% end if %>