Djoido 0 Denunciar post Postado Outubro 18, 2006 Olá !!!De acordo com as instruçoes abaixo, eu estou bloqueando o acesso ao arquivo "teste.aspx" - <location path="teste.aspx"> - para usuáriosnão autenticados. Existe alguma forma de bloquear todos os arquivos da pasta corrente e suas sub pastas com poucas instruçoes no arquivo abaixo ???-------------------------------------------------------------------------<?xml version="1.0" encoding="utf-8" ?><configuration> <system.web> <authentication mode="Forms"> <forms name="Exemplo" loginUrl="login.aspx" /> </authentication> </system.web> <location path="teste.aspx"> <system.web> <authorization> <deny users="?" /> </authorization> </system.web> </location></configuration>------------------------------------------------------------------Obrigado pela atenção Compartilhar este post Link para o post Compartilhar em outros sites
lipelandim 0 Denunciar post Postado Outubro 18, 2006 <location path="teste.aspx"><system.web><authorization><deny users="*" /></authorization></system.web></location></configuration>só trocar o ? por * Compartilhar este post Link para o post Compartilhar em outros sites