Yo añado esto al final del webconfig por cada pagina que quiero que se salte la autenticacion no se si hay otra forma mejor pero esta funciona.
</system.web>
<location path="error.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
<location path="mesaltoautenticacion.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
</configuration>
Breakdance