mirror of https://github.com/tongzx/nt5src
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
46 lines
2.0 KiB
<input type="hidden" name="ParentADSPath" value="<%= Request("ParentADSPath") %>">
|
|
|
|
<% if iThisPage <= LAST then %>
|
|
|
|
<!-- Hidden Fields for persistence -->
|
|
<% if iThisPage <> SITETYPE then %>
|
|
<input type="hidden" name="SiteType" value = "<%= Request("SiteType") %>">
|
|
<input type="hidden" name="NodeType" value="<%= Request("NodeType") %>">
|
|
<% end if %>
|
|
|
|
<% if iThisPage <> NODENAME then %>
|
|
<input type="hidden" name="NodeName" value="<%= Request("NodeName") %>">
|
|
<% end if %>
|
|
|
|
|
|
<% if iThisPage <> BINDINGS then %>
|
|
<input type="hidden" name="IPAddress" value="<%= Request("IPAddress") %>">
|
|
<input type="hidden" name="TCPPort" value="<%= Request("TCPPort") %>">
|
|
<input type="hidden" name="SSLPort" value="<%= Request("SSLPort") %>">
|
|
<% end if %>
|
|
|
|
<% if iThisPage <> PATHNAME then %>
|
|
<input type="hidden" name="VRPath" value="<%= Request("VRPath") %>">
|
|
<% if Request("NodeName") = "" then %>
|
|
<input type="hidden" name="AllowAnon" value="on">
|
|
<% else %>
|
|
<input type="hidden" name="AllowAnon" value="<%= Request("AllowAnon") %>">
|
|
<% end if %>
|
|
<% end if %>
|
|
|
|
<% if iThisPage <> ACCESSPERMS then %>
|
|
<% 'Default to Read/Script to on. Since check values are blank unless they are on %>
|
|
<% 'we will check the NodeName field, which is required, to determine if the values %>
|
|
<% 'have been set before. Once NodeName if filled, we'll persist the changed value %>
|
|
<% if Request("NodeName") = "" then %>
|
|
<input type="hidden" name="AllowRead" value="on">
|
|
<input type="hidden" name="AllowScript" value="on">
|
|
<% else %>
|
|
<input type="hidden" name="AllowRead" value="<%= Request("AllowRead") %>">
|
|
<input type="hidden" name="AllowScript" value="<%= Request("AllowScript") %>">
|
|
<% end if %>
|
|
<input type="hidden" name="AllowExecute" value="<%= Request("AllowExecute") %>">
|
|
<input type="hidden" name="AllowWrite" value="<%= Request("AllowWrite") %>">
|
|
<input type="hidden" name="AllowDirBrowsing" value="<%= Request("AllowDirBrowsing") %>">
|
|
<% end if %>
|
|
<% end if %>
|