[EMAIL PROTECTED] wrote: > Sind bei dir Webserver und Entwicklungsmachine getrennt ? > > Wenn ja dann schau dir mal die Seite auf dem Webserver direkt an > (falls du da ran kommst). > > Das selbe Problem hatte ich auch schon, bei mir lag es daran > das am IIS das Webverzeichniss noch nicht als Anwendung erstellt > worden war. > > Gruss Hermann > > -----Urspr�ngliche Nachricht----- > Von: mbecker [mailto:[EMAIL PROTECTED]] > Gesendet: Donnerstag, 23. Januar 2003 20:43 > An: [EMAIL PROTECTED] > Betreff: AW: [Asp.net] Warum geht das nicht?? > > > [EMAIL PROTECTED] wrote: >> Betreff: Re: [Asp.net] Warum geht das nicht?? >> >> >> Hallo Matthias, >> >> nach meinen Erfahrungen, hat die Fehlermeldung als solches weniger >> mit deinen Einstellungen zu tun. Du hat in deiner Anwendung einen - >> sagen wir mal technischen - Fehler gemacht. Es w�re interessant zu >> wissen, WIE du "Hello World" erstellt hast - da liegt die Ursache >> deines Problems. >> >> Vielleicht kannst du das noch etwas genauer beschreiben (zB. mal >> deinen Codeausschnitt). Hast du wirklich nur eine Standardseite mit >> VS.NET erstellt und im Page_Load() deine Ausgabe definiert? >> >> Gru� >> >> Rene >> ----- Original Message ----- >> From: "mbecker" <[EMAIL PROTECTED]> >> To: <[EMAIL PROTECTED]> >> Sent: Wednesday, January 22, 2003 9:59 PM >> Subject: [Asp.net] Warum geht das nicht?? >> >> >>> Hallo! >>> >>> Nu will ichs denn auch mal mit .NET probieren, aber ich hab da ein >>> Problem, an dem ich langsam verzweifel: >>> >>> Aaalso: Ich habe einen W2K Server mit IIS, FP2002 Extensions und dem >>> Framework SDK. Auf diesem richte ich ein neues Web ein. Dann (von >>> meiner WST aus) mit Visual Studio .NET ein neues Projekt erstellt >>> (auch schon mit Webmatrix, aber gleiches Ergebnis). >>> >>> Dann eine default.aspx, die nur ein 'Hello World' enth�lt. Wenn ich >>> nun die Seite im Browser (dev.domain.tld) aufrufe kommt: >>> >>> 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". >>> >>> Wenn ich nun in der web.config customErrors=Off setze, hab ich den >>> gleichen Fehler. Woher kommt das Teil denn nun? >>> >>> Danke f�r jede Idee >>> >>> Mathias >>> >>> _______________________________________________ >>> Asp.net mailing list >>> [EMAIL PROTECTED] >>> http://www.glengamoi.com/mailman/listinfo/asp.net >>> >>> >> >> >> _______________________________________________ >> Asp.net mailing list > Hallo! > > Danke erst mal, aber das wars wohl noch nicht. > Hier mal der Abschnitt aus der Web.config: > > <?xml version="1.0" encoding="utf-8" ?> > <configuration> > <system.web> > <customErrors mode="Off" /> > </system.web> > </configuration> > > Und nu der Inhalt von Webform1.aspx: > <%@ Page Language="vb" AutoEventWireup="false" > Codebehind="WebForm1.aspx.vb" Inherits="Intranet.WebForm1"%> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> > <head> <title>WebForm1</title> > <meta name="GENERATOR" content="Microsoft Visual > Studio.NET 7.0"> > <meta name="CODE_LANGUAGE" content="Visual Basic 7.0"> > <meta name="vs_defaultClientScript" > content="JavaScript"> > <meta name="vs_targetSchema" > content="http://schemas.microsoft.com/intellisense/ie5"> </head> > <body MS_POSITIONING="GridLayout"> > Hello World > <form id="Form1" method="post" runat="server"> > </form> > </body> > </html> > > Das einzige was NICHT von VS stammt ist das "Hello World". > > Der Fehler bleibt gleich. Und nu? > > Eigentlich ist das doch nur billigstes HTML! *Buhuuuuu* > > Ich bin zu bl�d f�r .NET :( > > > Mathias Becker > > _______________________________________________ > Asp.net mailing list > [EMAIL PROTECTED] > http://www.glengamoi.com/mailman/listinfo/asp.> net > > _______________________________________________ > Asp.net > mailing list > [EMAIL PROTECTED] > http://www.glengamoi.com/mailman/listinfo/asp.> net
Hallo! Vielleicht hilft das noch :( Da auch der Server lokal ist (Dev maschine und Server sind getrennt), kann ich da schon mal lokal ran. Folgender Fehler wars, wenn ichs direkt auf dem Server starte (sinngema�ss, da nu wech) ;) : Error starting ASP.NET Application .... Access denied Nu hab ich der ASPNET Gruppe und der DebuggerUser Gruppe full control gegeben und kriege nu folgendes: Access denied to 'd:\webs\devtest-mode-fuer-kids-de\data\' directory. Failed to start monitoring directory changes. Damit hab ich dann rausgefunden, dass scheinbar die ASPNET User Group die Rechte auf der "Partition" ??? Auf der das Web liegt braucht (read + execute). Damit geht's ein wenig weiter, der Server r�delt, die HDD l�rmt und dann kommt das: :( Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: BC30138: Unable to create temp file in path 'd:\temp\': Access is denied Die ASPNET Group hat aber full control auf d:\temp? Was fehlt denn nu noch? Wow. Wenn das so weiter geht trau ich M$ Sicherheitsoffensive nicht so weit, wie ich schauen kann! Wof�r braucht ein Web Read und Execute auf der ganzen Partition??? Das darfs (und kanns eigentlich) auch nicht sein. Bitte sag mir jemand, das das nicht die Realit�t ist sonden ich nur nicht genau geschaut habe ;) Wobei mich das mit dem System Temp folder (d:\temp) schon stutzig macht? Was gibts denn noch ausser full control? Mit freundlichen Gr�ssen Mathias Becker _______________________________________________ Asp.net mailing list [EMAIL PROTECTED] http://www.glengamoi.com/mailman/listinfo/asp.net
