Asp.NET

Determinare i permessi di un assembly

Con Permcalc.exe è possibile determinare i permessi di cui necessita un assembly (ad esempio nel caso voglia effettuare un deploy su un ambiente in medium trust): "Starting from the entry point of the application, the tool traces all code paths through all application assemblies and the shared and system libraries called from the application. The tool maintains a simulated call stack that contains all the assemblies involved in the code path trace. On every code path trace, the tool checks for the presence of declarative demands, link demands, and declarative stack walk modifiers [..]" Per maggiori info powered by IMHO 1.3

posted @ venerdì 20 gennaio 2006 19:07 | Feedback (1)

DotNetNuke .NET 2.0

E' uscita la versione (a dire il vero da un po'...) 4.x di DotNetNuke, uno dei CMS più usati. La nuova versione utilizza ASP.NET 2.0 e SQL Server 2005 e, provandola in locale e in ambiente di test, devo dire che le performance sono nettamente migliori. Ci sono anche nuovi moduli supportati dal team di Perpetual Motion, come il blog, il forum e repository : qui potete trovare la lista di tutti i moduli Core.Qui invece la lista di tutti i...

posted @ mercoledì 18 gennaio 2006 14:42 | Feedback (2)

Debug e Release in vs2005 : 1.1 vs 2.0

"One of the adjustments to make when moving from ASP.NET 1.1 to 2.0 is how to produce debug and release builds. "[...]"Here is the most important concept to come to terms with in 2.0: Visual Studio 2005 knows nothing about compiling a web application. In 1.1 VS built the code-behind and ASP.NET built the web forms. In 2.0 Visual Studio 2005 delegates all compilation responsibilities to the ASP.NET platform. " Qui il post intero di Scott Allen sull'utilizzo dei nuovi strumenti Publish e Web Site Deployment (WSD) in Visual Studio 2005.

posted @ lunedì 21 novembre 2005 01:09 | Feedback (1)

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)