Hi Andreas,

nach ein bisschen XML-Schach hats dann doch noch geklappt:

Die web.config einfach so gelassen wie für "Login auf alles" und
ergänzend vor den </configuration> die location paths gebaut.

Geht dann aber auch nur wenn allow = Alle und deny = Anonym steht
und jede Seite einzeln bestimmt wird.

Danke Dir. LG Dirk

...
<!-- Die Main.aspx und Login.aspx sind für alle Benutzer zugelassen -->
 <location path="main.aspx">
        <system.web>
            <authorization>
                <allow users="*" />
            </authorization>
        </system.web>
    </location>
    <location path="login.aspx">
        <system.web>
            <authorization>
                <allow users="*" />
            </authorization>
        </system.web>
    </location>
    <!-- Alle Anderen erfordern Login -->
    <location path="article.aspx">
        <system.web>
            <authorization>
                <deny users="?" />
            </authorization>
        </system.web>
    </location>
    ...
</configuration>

Pessner, Andreas schrieb:
Hm - war mein Fehler!

Nimm mal:
<configuration> <system.web>
<authorization>
<deny users="*" />
</authorization>
</system.web>
</configuration>

_______________________________________________ Asp.net Mailingliste, Postings senden an: Asp.net@glengamoi.com An-/Abmeldung und Suchfunktion unter: http://www.glengamoi.com/mailman/listinfo/asp.net

Antwort per Email an