%@ LANGUAGE=VBScript %> <% Option Explicit %> <% Response.Expires = 0 %> <% Const L_DONTASK_TEXT = "Don't display this dialog again." Const L_YES_TEXT=" Yes " Const L_NO_TEXT=" No " Dim L_CLEARPATHS_TEXT, L_CHILDDIRS_TEXT, L_CLICKYES_TEXT, L_CLICKNO_TEXT if Session("vtype") = "svc" then L_CLEARPATHS_TEXT = "Property changes made to master properties will not be applied to sites and child directories " L_CHILDDIRS_TEXT = "sites and child directories." else if Session("vtype") = "server" then L_CLEARPATHS_TEXT = "Property changes made to this site will not be applied to child directories " else L_CLEARPATHS_TEXT = "Property changes made to this directory will not be applied to child directories " end if L_CHILDDIRS_TEXT = "child directories." end if L_CLEARPATHS_TEXT = L_CLEARPATHS_TEXT + "whose properties have already been explicitly set, unless you choose to override those previously set properties." L_CLICKYES_TEXT = "Click Yes if you want to override explicitly set properties on all " + L_CHILDDIRS_TEXT L_CLICKNO_TEXT = "Click No if you do not want to override explicitly set properties on all " + L_CHILDDIRS_TEXT On Error Resume Next Session("clearPaths") = "" Session("clearPathsOneTime") = "" %>