Virtual-Paths do not do replacements by default. You have to add the replacement as an optional second step, so you could just not make that replacement. You could also put your replacement inside a conditional rule to have it only replace if your not authenticated. [PB:IIF([PB:Request.IsAuthenticated]=='False') { your orginal relacement text here
}else { the text that is in the search for field so that it put's the same thing back }] |