> Mit deployed war gemeint auf den Zielserver kopiert; aber wenn Du eh' 
> VS.NET nimmst ist das automatisch.

Das witzige ist, es geht auf beiden nicht. Ich habe so die Vermutung dass
das vielleicht mit den Web.configs zusammen h�ngt!

Nur weiss ich das nicht genau!

Ich versuche nochmal genau die Struktur zu erkl�ren:

Ich habe ein ASP.NET Projekt im Visual Studio.NET erstellt. Der ganze Source
wird auf G:\WebProjekte\pain gespeichert.

Im IIS gibt es den Alias pain
Also mit http://localhost/pain rufe ich diese Seite auf! Den Alias im IIS
hat das VS.NET beim anlegen automatisch gemacht.

Ich habe mir dann ein Unterverzeichnis erstellt. G:\WebProjekte\pain\intern
Dieser Bereich soll nur f�r Mitglieder zug�nglich sein. Also habe ich in das
Verzeichnis eine eigene Web.Config gelegt. Beim Aufruf hat der Compiler
gemeldet das ich auch das Unterverzeichnis im IIS anlegen muss. Also auch
das getan und schwups ging es mit dem bisher beschriebenen Fehler weiter!

Hier nochmals die Config f�r das Verzeichnis intern:

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

<configuration>
        <system.web>
        
                <compilation 
                        defaultLanguage="vb"
                        debug="true"
                />

                <customErrors mode="Off" />

                <authentication mode="Forms">
                        <forms 
                                name="painIntern"
                                loginUrl="login.aspx"
                                protection="All"
                                path="/"
                                timeout="15"
                        />
                </authentication>
                                        
                <authorization>
                        <deny users="?" />
                </authorization>
                        
                <trace 
                        enabled="false" 
                        requestLimit="10" 
                        pageOutput="false" 
                        traceMode="SortByTime" 
                        localOnly="true"
                />

                <sessionState 
                        mode="Off"
                        cookieless="false" 
                        timeout="20" 
                />

                <globalization
                        requestEncoding="utf-8"
                        responseEncoding="utf-8"
                />
                
                <pages smartNavigation="true"   />

        </system.web>
        
        
        <!-- Allgemeine Variablen //-->
        <appSettings>
                <add key="pageTitle" value="pain! CS-CLAN :: Intern" />
                <add key="dbconn" value="Provider=Microsoft.Jet.OLEDB.4.0; Data 
Source=G:\WebProjekte\pain\_db\pain.mdb" />
                <!-- <add key="dbconn" value="Provider=Microsoft.Jet.OLEDB.4.0; Data 
Source=d:\ftp\rpweb.info\pain\_db\pain.mdb" /> //-->
        </appSettings>

</configuration>


Und hier nochmal die Config aus dem root:

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

<configuration>
        <system.web>
        
                <compilation 
                        defaultLanguage="vb"
                        debug="true"
                />

                <customErrors mode="RemoteOnly" />

                <authentication mode="None" />
                                        
                <authorization>
                        <allow users="*" />
                </authorization>
                        
                <trace 
                        enabled="false" 
                        requestLimit="10" 
                        pageOutput="false" 
                        traceMode="SortByTime" 
                        localOnly="true"
                />

                <sessionState 
                        mode="Off"
                        cookieless="false" 
                        timeout="20" 
                />

                <globalization
                        requestEncoding="utf-8"
                        responseEncoding="utf-8"
                />
                
                <pages smartNavigation="true"   />

        </system.web>
        
        
        <!-- Allgemeine Variablen //-->
        <appSettings>
                <add key="pageTitle" value="pain! CS-CLAN" />
                <add key="dbconn" value="Provider=Microsoft.Jet.OLEDB.4.0; Data 
Source=G:\WebProjekte\pain\_db\pain.mdb" />
                <!-- <add key="dbconn" value="Provider=Microsoft.Jet.OLEDB.4.0; Data 
Source=d:\ftp\rpweb.info\pain\_db\pain.mdb" /> //-->
        </appSettings>

</configuration>


Ich komme einfach nicht weiter.

Gr��e
Rene

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

Antwort per Email an