You could get the IIS site name using the GetSiteName method.
System.Web.Hosting.HostingEnvironment.ApplicationHost.GetSiteName();
The GetSiteName is introduced in the .NET Framework …
You could get the IIS site name using the GetSiteName method.
System.Web.Hosting.HostingEnvironment.ApplicationHost.GetSiteName();
The GetSiteName is introduced in the .NET Framework …
ASP.NET offers a “Cache” object that is shared across the application and can also be used to store various objects.
The “Cache” object holds the data only for a specified amount of time and is automatically cleaned after the session …
This development tool contains a rich set of productivity and debugging features. The Visual Studio setup CDs (or DVD) include the complete .NET Framework, so you won’t need to download …
Service is an application that provides information and/or functionality to other applications. Services are typically non-human-interactive applications that run on servers and interact with applications via an interface. A service may expose a synchronous, programmatic interface (i.e., an API), allowing it to be tightly-coupled with a consumer, or use asynchronous, message-based communications (e.g., HTTP, XML, and SOAP) to …
Server-side is an operation or event that occurs on a server system. Examples include server-side scripting, server-side objects, and …
Portable Executable (PE) file is the file format defining the structure that all executable files (EXE) and Dynamic Link Libraries (DLL) must use to allow them to be loaded and executed by Windows. PE is derived from the Microsoft Common Object File Format (COFF). The EXE and DLL files created using the .NET Framework obey the PE/COFF formats …
Private assembly is an assembly that is used only by a single application. A private assembly will run only with the application with which it was built and deployed. References to the private assembly will only be resolved locally to the application directory it is …
.NET FCL is the foundation of classes, interfaces, value types, services and providers that are used to construct .NET Framework desktop and Web-based (i.e., ASP.NET) applications. The fundamental elements of the FCL are defined as classes located in the System namespace. All of the most primitive aspects of .NET are stored in System, including built-in value types, the …
.NET Framework is a programming infrastructure created by Microsoft for building, deploying, and running applications and services that use .NET technologies, such as Windows Forms (the technology for creating desktop user interfaces), and Web services. The .NET Framework contains three major parts: the Common Language Runtime (CLR), the Framework Class Library, …
Multi-module Assembly is a .NET program which is contained in many modules and resource files. The use of an assembly manifest to identify all of the files in a multi-module assembly …