>> Ich werde aber weiter versuchen das mit einer Datei zu l�sen ...

> "For more information about how to use the <location> tag, see:"
> ms-help://MS.NETFrameworkSDK/cpguidenf/html/cpconconfigurationlocationsettings.htm

> Wenn Du Erfolg hast, bitte schicken ...

> Gru�, Matthias 

Hallo Matthias,

ich hatte Erfolg und es geht auch. Hier nochmal meine ganze web.config,
Erkl�rung weiter unten:

<?xml version="1.0" encoding="utf-8" ?>

<configuration>    
  <system.web>

    <compilation defaultLanguage="vb" debug="true" />
    <customErrors mode="RemoteOnly" />

                <authentication mode="Forms"> 
                        <forms loginUrl="intern/login.aspx" protection="All" 
timeout="30" path="/" />
                </authentication>

    <trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" 
localOnly="true" />

    <sessionState 
            mode="InProc"
            stateConnectionString="tcpip=127.0.0.1:42424"
            sqlConnectionString="data source=127.0.0.1;user id=sa;password="
            cookieless="false" 
            timeout="20" />

    <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
   
  </system.web>
  
  
  <!-- ************************************* //-->
  <!-- ********** Eigene Settings ********** //-->
  <!-- ************************************* //-->

        <location path="intern">
                <system.web>

                        <authorization>
                                <deny users="?" />
                        </authorization>

                </system.web>
        </location>
          
</configuration>


In meiner alten config hatte ich den Block
                        <authorization>
                                <allow users="*" />
                        </authorization>
stehen.

Das war der Knackpunkt. Dieser Block hat alles ab dem Root freigegeben und
sich �ber das Location Nodes gestellt. Wenn man mit Location arbeiten musst
du drauf achten das die location Werte nicht schon global freigegeben oder
ge�ndert wurden, da diese immer verwendet werden!

Gr��e
Rene

_______________________________________________
Asp.net mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/asp.net

Antwort per Email an