Visualizzazione dei risultati da 1 a 3 su 3

Discussione: problema server

  1. #1
    Utente di HTML.it L'avatar di biocco
    Registrato dal
    Sep 2003
    Messaggi
    486

    problema server

    aiuto!!!

    ho sviluppato il prgramma in locale ora lo messo sul server e mi restituisce quaeto errore avete idea di cosa possa essere???

    [CODE]
    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".




    <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.




    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>


    CODE]

  2. #2
    Utente di HTML.it L'avatar di biocco
    Registrato dal
    Sep 2003
    Messaggi
    486
    ho messo il customerror a off

    ora mi da questo

    Server Error in '/' Application.
    --------------------------------------------------------------------------------

    Parser Error
    Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

    Parser Error Message: Could not load type 'valutazione.Global'.

    Source Error:


    Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="valutazione.Global" %>



    Source File: \\Quasar\IEOStorage\Web\Public\Sito_IEO\Intranet\W wwRoot\Develop\Valutazione\global.asax Line: 1


    --------------------------------------------------------------------------------
    Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573

  3. #3
    Utente di HTML.it
    Registrato dal
    Aug 2003
    Messaggi
    514
    Scusate se mi intrometto, ho anch'io sempre lo stesso problema

    Server Error in '/' Application

    Etc...........
    Etc...........

    Siccome inizio adesso con ASP.Net ho notato che ci vuole il web.config

    Allora ho fatto questo

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

    <system.web>


    <compilation defaultLanguage="vb" debug="true"/>

    <customErrors mode="Off">

    </customErrors>


    </system.web>

    </configuration>

    però non ho capito una cosa, lo devo salvare come un file xml o come file normale dal notepad ?
    se lo faccio con un editor di file xml epoi lo salvo esce cosi: web.config.xml è giusto ?

    comunque per la cronaca ne ho fatti due e mi dà sempre quell'errore e non mi fà vedere l'errore relativo alla pagina.

    premetto che lo stò provando On-Line , qui a casa la mi apagina funziona e non dà problemi.

    La pagina è una cazzata:

    <%@ Page language="VB" %>


    <html>

    <head>
    <title>ASP.NET</title>
    </head>

    <body>

    PROVA

    </body>

    </html>

    perchè da errore ?
    ho la directory vuota e non ho ancora messo il global.asax è per quello ?

    ho solo la pagina
    default.aspx
    web.config.xml
    web.config

    cosa cosa può essere ?

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2026 vBulletin Solutions, Inc. All rights reserved.