Hatte den Fehler auch und bei mir hat die Web.config nicht geholfen. Fehlermeldung auf dem Server war n�mlich, dass er nicht auf das Verzeichnis zugreifen konnte (deshalb auch nicht auf die config).
Ich konnte in bestehenden Webs kein .net verwenden, nur in nach der Installation angelegten. Andreas ----- Original Message ----- From: "Steven A Smith" <[EMAIL PROTECTED]> To: "aspDEdotnet" <[EMAIL PROTECTED]> Sent: Thursday, January 17, 2002 2:59 AM Subject: [aspdedotnet] Re: Fehler in Final Version > Jan, > Was gibt's in deiner Web.config? Du musst die folgenden haben: > <configuration> > <system.web> > <customErrors mode="Off"/> > </system.web> > </configuration> > > und dann willst du das richtig Fehler sehen. > > Steve > > (Es tut mir leid - ich weiss dass mein Deutsch ist nicht sehr gut) > > Steven Smith, ASP.NET MVP, MCSE+Internet > [EMAIL PROTECTED] > President, ASPAlliance.com > http://aspalliance.com The #1 ASP.NET Community > http://aspsmith.com ASP.NET Training for ASP Developers > > Learning ASP.NET? Get My Book: ASP.NET By Example > http://www.amazon.com/exec/obidos/ASIN/0789725622/stevenatorasp/ > ----- Original Message ----- > From: "Jan Baer" <[EMAIL PROTECTED]> > To: "aspDEdotnet" <[EMAIL PROTECTED]> > Sent: Wednesday, January 16, 2002 5:41 PM > Subject: [aspdedotnet] Fehler in Final Version > > > Hallo alle zusammen, > > Ich habe gerade die Final Version von Visual Studio.NET bei mir > installiert und auch gleich mal meine bisherigen Arbeiten mit der Final > Version kompiliert. > Alle Webseiten laufen ohne Probleme. Ich hatte vorher den RC drauf. > > Mein Webprovider hat heute auch gleich zum Test auf einem Server die > Final von ASP.NET draufgespielt und mir ein Web zu testen zu Verf�gung > gestellt. > Wenn ich jetzt egal was ich f�r eine ASPX-Seite (auch nur > helloworld.aspx) starte, bekomme ich bei meinem Provider folgenden > Fehlertext angezeigt: > > Server Error in '/' Application. > ------------------------------------------------------------------------ > -------- > > Runtime Error > Description: An application error occurred on the server. The current > custom error settings for this application prevent the details of the > application error from being viewed remotely (for security reasons). It > could, however, be viewed by browsers running on the local server > machine. > > Details: To enable the details of this specific error message to be > viewable on remote machines, please create a <customErrors> tag within a > "web.config" configuration file located in the root directory of the > current web application. This <customErrors> tag should then have its > "mode" attribute set to "Off". > > > <!-- Web.Config Configuration File --> > > <configuration> > <system.web> > <customErrors mode="Off"/> > </system.web> > </configuration> > > > Notes: The current error page you are seeing can be replaced by a custom > error page by modifying the "defaultRedirect" attribute of the > application's <customErrors> configuration tag to point to a custom > error page URL. > > > <!-- Web.Config Configuration File --> > > <configuration> > <system.web> > <customErrors mode="RemoteOnly" > defaultRedirect="mycustompage.htm"/> > </system.web> > </configuration> > > Hat jemand ne Ahnung was da falsch konfiguriert sein kann? Wie gesagt > alle Sachen laufen auf meinem eigenen Rechner nur beim Provider leider > nicht! > > Danke! > > Gruss > > Jan > > > > | [aspdedotnet] als [EMAIL PROTECTED] subscribed > | http://www.dotnetgerman.com/archiv/aspdedotnet/ = Listenarchiv > | Sie k�nnen sich unter folgender URL an- und abmelden: > | http://www.dotnetgerman.com/listen/aspDEdotnet.asp > > > > | [aspdedotnet] als [EMAIL PROTECTED] subscribed > | http://www.dotnetgerman.com/archiv/aspdedotnet/ = Listenarchiv > | Sie k�nnen sich unter folgender URL an- und abmelden: > | http://www.dotnetgerman.com/listen/aspDEdotnet.asp > | [aspdedotnet] als [email protected] subscribed | http://www.dotnetgerman.com/archiv/aspdedotnet/ = Listenarchiv | Sie k�nnen sich unter folgender URL an- und abmelden: | http://www.dotnetgerman.com/listen/aspDEdotnet.asp
