ottobre 2005 Blog Posts

Creare Virtual Directory su IIS

E' possibile creare Virtual Directory sia utilizzando ADSI che WMI anche se entrambe le soluzioni richiedono più di 5 righe di codice .Usando EnterpriseServices invece è possibile ... using System.EnterpriseServices.Internal;[..]//creazione della virtual DirectoryIISVirtualRoot vr = new IISVirtualRoot();string sError = "";vr.Create("IIS://localhost/W3SVC/1/ROOT",@"c:\inetpub\myvdir","MyVDir",out sError);//cancellazione della virtual Directoryvr.Delete("IIS://localhost/W3SVC/1/ROOT",@"c:\inetpub\myvdir","MyVDir",out sError);   powered by IMHO 1.2

posted @ venerdì 21 ottobre 2005 14:50 | Feedback (1)

Stored Procedure Utility - Count Lines of Code and Search Contents

Get a list of all the stored procedures in your SQL Server (only) database See the actual code in your stored procedures Search the contents of your stored procedures for any keywords Finalmente!!! #quimaggioriinfo# powered by IMHO 1.2

posted @ mercoledì 5 ottobre 2005 19:02 | Feedback (28)

Modificare la directory di compilazione di Asp.NET

La directory di compilazione di ASP.NET è, di default, su %windir%\microsoft.net\framework\v1.1.4322\temporary ASP.NET FilesE' possibile modificare questo parametro aggiungendo al machine.config quanto segue: <compilation debug="true" explicit="true" defaultLanguage="vb" tempDirectory="PERCORSODOVEPUNTARE">Ad esempio:<compilation debug="true" explicit="true" defaultLanguage="vb" tempDirectory="D:\TEMP"> powered by IMHO 1.2

posted @ mercoledì 5 ottobre 2005 00:43 | Feedback (2)