HOME     
 Themen

 ASP.NET
        Layout & Design
        Datenzugriff & Datenbindung
        Steuerelemente / Controls
        Caching & Performance
        Ressourcen & Lokalisierung
        Konfiguration & Deployment
        Debugging & Error Handling
        HTTP-Module und -Handler
        Sicherheit
        Ajax & Atlas
 ADO.NET
        SQL-Server
 C# & VB.NET
 Windows Forms
        Datenbindung
        Multimedia
 XML & XSLT
 Web Services
 Office
        Sharepoint
 Sicherheit
 Mobile Devices
 Visual Studio
 .NET 3.0
 Informationen

 Über DotNetProject

 Artikel anmelden

 Impressum

Kompilierung & Deployment        Konfiguration
 Kompilierung & Deployment  

Entscheidungsmatrix: Auswählen eines Vorkompilierungsmodells  
ASP.NET stellt zwei Modelle zum Vorkompilieren der Website bereit. In diesem Thema werden die Vorkompilierungsmodelle erörtert, und Sie erhalten Orientierungshilfen, um das richtige Modell für eine Webanwendung auszuwählen.
msdn2.microsoft.com

Übersicht über das Vorkompilieren einer ASP.NET-Website  
Standardmäßig werden ASP.NET-Webseiten und Codedateien dynamisch kompiliert, wenn eine Ressource wie die Seite einer Website zum ersten Mal durch einen Benutzer angefordert wird. Nach dem ersten Kompilieren der Seiten und Codedateien werden die kompil ...
msdn2.microsoft.com

Kompilierung von ASP.NET 2.0-Anwendungen  
In ASP.NET 2.0 haben bei der Kompilierung grundlegende Änderungen Einzug gehalten, die zu wesentlich flexibleren Möglichkeiten für die Bereitstellung von ASP.NET-Anwendungen geführt haben. Dieser Artikel gibt einen Überblick.
www.dotnet-project.de · 05/2006

Verwalten vorkompilierter ASP.NET-Ausgaben zur Bereitstellung mit "aspnet_merge.exe"  
Aspnet_merge.exe ist ein neues Dienstprogramm zum Verwalten einer Website-Produktionsumgebung. Das Tool führt die beim Vorkompilieren einer Website möglicherweise zahlreichen vom ASP.NET-Compiler (aspnet_compiler.exe) erstellten Assemblys zusammen. Du ...
www.microsoft.com · 04/2006

ASP.NET-Kompilierungstool (Aspnet_compiler.exe)  
Mit dem ASP.NET-Kompilierungstool (Aspnet_compiler.exe) können Sie eine ASP.NET-Webanwendung kompilieren, entweder direkt oder für die Bereitstellung an einem Zielort wie auf einem Produktionsserver. Mit der direkten Kompilierung wird die Anwendungsle ...
msdn2.microsoft.com

Codebehind and Compilation in ASP.NET 2.0  
Quite a bit has changed in the subsequent beta releases, mostly in the form of refinements, bug fixes, and control additions. However, one feature—the codebehind model—has changed rather dramatically since that first preview, primarily in response to ...
msdn.microsoft.com · 01/2006

Precompilation In ASP.NET 2.0  
In this article we will explore the benefits and caveats around pre-compilation and the new aspnet_compiler tool.
www.odetocode.com · 06/2005

Deploying ASP.NET Applications - Part 2  
The second and final article in this series shows how to add advanced functionality such as customizing the installation dialog boxes and their sequence, installing registry entries, and creating custom folders to Windows installer files. The article ...
www.15seconds.com · 08/2003

Deploying ASP.NET Applications - Part 1  
This article details the support provided by the .NET Framework for packaging and deploying ASP.NET Web applications onto target machines. It also shows how to use Windows Installer technology for creating sophisticated ASP.NET Web application installers.
www.15seconds.com · 08/2003
 Konfiguration  

Gewusst wie – Konfigurieren von ASP.NET-Anwendungen  
Die folgenden Prozeduren beschreiben, wie Aufgaben für die in diesem Abschnitt erörterten Konzepte ausgeführt werden.
msdn2.microsoft.com

Exemplarische Vorgehensweise: Verschlüsseln von Konfigurationsinformationen mithi ...  
Erläutert anhand eines Beispiels Schritt für Schritt, wie Sie Abschnitte der Konfigurationsdatei einer ASP.NET-Anwendung verschlüsseln können.
msdn2.microsoft.com

Parameterize Your Apps Using XML Configuration In The .NET Framework 2.0  
msdn.microsoft.com · 06/2006

Neues bei der ASP.NET-Konfiguration  
ASP.NET, Version 2.0, enthält ein Konfigurationsverwaltungssystem, das neue Tools und Schnittstellen sowie erweiterte Konfigurationseinstellungen zur Verfügung stellt. Mithilfe neuer Verwaltungstools und einer neuen API für die Konfigurationsverwaltun ...
msdn2.microsoft.com

ASP.NET-Anwendungen installieren und konfigurieren  
Um ASP.NET-Anwendungen zu installieren und zu konfigurieren stehen dem Entwickler und Administrator leistungsfähige, aber dennoch einfache Instrumente zur Verfügung. Die eigentliche Installation einer ASP.NET-Anwendung ist dabei faszinierend einfach. ...
www.dotnetframework.de

Einführung in dynamische Eigenschaften  
Mit dynamischen Eigenschaften können Sie Ihre Anwendung so konfigurieren, dass einige oder alle Eigenschaftenwerte statt im kompilierten Code der Anwendung in einer externen Konfigurationsdatei gespeichert werden. Dadurch verringert sich der Verwaltun ...
msdn2.microsoft.com

The Configuration API in .NET 2.0  
.NET 2.0 allows us to read, write, and encrypt sections in configuration files. In this article we will look into the configuration API to prepare for issues regarding permissions, key management, and application restarts.
www.odetocode.com · 07/2005

How To: Encrypt Configuration Sections in ASP.NET 2.0 Using RSA  
This How To shows how to use the RSA Protected Configuration provider and the Aspnet_regiis.exe tool to encrypt sections of your configuration files. You can use Aspnet_regiis.exe tool to encrypt sensitive data, such as connection strings, held in the ...
msdn.microsoft.com · 07/2005

AppSettings in web.config  
In this article we will review a couple of pratices to keep your runtime configuration information flexible.
www.odetocode.com · 02/2005

The ASP.NET Web.config File Demystified  
Applications of XML have been integrated into .NET to such an extent that XML is hardly a buzzword anymore. Microsoft, as you probably know, has taken XML into the core of its .NET framework. Not only is XML a generally accepted format for the exchang ...
www.sitepoint.com · 01/2005

Sinnvolle Verwendung der global.asax  
Die global.asax-Datei bietet vielfältige Einsatzmöglichkeiten für Entwickler. Besonders die beiden Events Application_BeginRequest, Application_EndRequest und Application_Error sollen an dieser Stelle im Blickpunkt des Interesses stehen. Einige sinnvo ...
www.microsoft.com · 11/2004

Creating a Flexible Configuration Section Handler  
Jeff Gonzalez demonstrates how to create a flexible configuration section handler using C#. He provides a summary background of the .NET configuration system, explains why the system is useful, and shows how it can be extended.
www.15seconds.com · 05/2004