Mi segnala un errore.
Ti faccio vedere il mio config, dove è l'errore?
L'idea è quella di avere un'area riservata nella sottocartella 'Riservato', ma così non funziona...


<configuration>

<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>

<location path="EsempioPaolo/Riservato/">
<system.web>
<authentication mode="Forms">
<forms name="EsempioF" loginUrl="EsempioPaolo/Riservato/Autenticazione.aspx" protection="All" timeout="20">
<credentials passwordFormat="Clear">
<user name="utente1" password="password1" />
<user name="utente2" password="password2" />
<user name="utente3" password="password3" />
</credentials>
</forms>
</authentication>
<authorization>
<allow users="utente1,utente2,utente3" />
<deny users="*" />
</authorization>
</system.web>
</location>

</configuration>



Ciao e grazie!