Con IIS 6.0 mi è capitato di generare il seguente errore
Active Server Pages error 'ASP 0131' Disallowed Parent Path shop/default.asp, line x The Include file '../nomefile.asp' cannot contain '..' to indicate the parent directory.Per ovviare a questo problema bisogna andare nelle opzioni di IIS, nel tab Home, tasto Configurazione, tab Opzioni e spuntare la casella Abilita percorsi principali.
Active Server Pages error 'ASP 0113' Script timed out /nomepagina.asp The maximum amount of time for a script to execute was exceeded. You can change this limit by specifying a new value for the property Server.ScriptTimeout or by changing the value in the IIS administration tools.La sciprt impega molto tempo a restituire il codice della pagina. Bisogna modificare la proprietà
Server.ScriptTimeout = [numseconds]il default è 90 secondi (un minuto e mezzo). Per esempio per portarlo a 3 minuti
Server.ScriptTimeout = 180
Torna alla home page