asp.net

How to get site name in ASP.NET

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 version 3.5.

Related TutorialsHow to configure session state to use Uri in ASP.NET
How to change bullets on list items with CSS
How to document web service in ASP.NET in VB.NET
How to run JavaScript from code behind in ASP.NET
How to create a manual …

Learn more

ASP.NET Server-side caching

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 time-limit elapses.

Related TutorialsASP.NET Session state
How to make 301 redirect in ASP.NET 4.0
How to create new aspx web page
What is …

Learn more

Visual Studio

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 it separately.

Related TutorialsConfiguration Management
GC (Garbage Collection)
Runtime …

Learn more

Service

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 …

Learn more

Server-side

Server-side is an operation or event that occurs on a server system. Examples include server-side scripting, server-side objects, and server-side processing.

Related TutorialsKeywords
Xlink (XML Linking …

Learn more

PE (Portable Executable)

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 …

Learn more

Private assembly

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 installed in.

Related TutorialsLifetime
Stack
Windows Form
Managed …

Learn more

.NET FCL (Framework Class Library)

.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 …

Learn more

.NET Framework

.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, and ASP.NET.

Related TutorialsUDDI (Universal Description, Discovery, and …

Learn more

Multi-module Assembly

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 is required.

Related TutorialsXSL (eXtensible Stylesheet Language)
Side-by-Side Execution
Application domain
XML (eXtensible …

Learn more