Click here to Skip to main content
15,891,976 members
Articles / Web Development / ASP.NET

Creating ASP.NET Applications with N-Tier Architecture

Rate me:
Please Sign up or sign in to vote.
4.81/5 (83 votes)
11 Nov 2013CPOL6 min read 433.8K   27.7K   187  
This article describes how to build ASP.NET applications using n-tier architecture.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "C:\...\PL\", "PL\", "{40067D88-DA4C-475E-89A2-31A8672B703A}"
	ProjectSection(WebsiteProperties) = preProject
		ProjectReferences = "{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}|BLL.dll;"
		Debug.AspNetCompiler.VirtualPath = "/PL"
		Debug.AspNetCompiler.PhysicalPath = "PL\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\PL\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/PL"
		Release.AspNetCompiler.PhysicalPath = "PL\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\PL\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "1875"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DAL", "DAL\DAL\DAL.csproj", "{CDCDC50F-892D-46C0-939C-92B534961747}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BLL", "BLL\BLL\BLL.csproj", "{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}"
	ProjectSection(ProjectDependencies) = postProject
		{CDCDC50F-892D-46C0-939C-92B534961747} = {CDCDC50F-892D-46C0-939C-92B534961747}
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|.NET = Debug|.NET
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Release|.NET = Release|.NET
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Debug|.NET.ActiveCfg = Debug|.NET
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Debug|.NET.Build.0 = Debug|.NET
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Debug|Any CPU.ActiveCfg = Debug|.NET
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Debug|Mixed Platforms.ActiveCfg = Debug|.NET
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Debug|Mixed Platforms.Build.0 = Debug|.NET
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Release|.NET.ActiveCfg = Debug|.NET
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Release|.NET.Build.0 = Debug|.NET
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Release|Any CPU.ActiveCfg = Debug|.NET
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Release|Mixed Platforms.ActiveCfg = Debug|.NET
		{40067D88-DA4C-475E-89A2-31A8672B703A}.Release|Mixed Platforms.Build.0 = Debug|.NET
		{CDCDC50F-892D-46C0-939C-92B534961747}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{CDCDC50F-892D-46C0-939C-92B534961747}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{CDCDC50F-892D-46C0-939C-92B534961747}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{CDCDC50F-892D-46C0-939C-92B534961747}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{CDCDC50F-892D-46C0-939C-92B534961747}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{CDCDC50F-892D-46C0-939C-92B534961747}.Release|.NET.ActiveCfg = Release|Any CPU
		{CDCDC50F-892D-46C0-939C-92B534961747}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{CDCDC50F-892D-46C0-939C-92B534961747}.Release|Any CPU.Build.0 = Release|Any CPU
		{CDCDC50F-892D-46C0-939C-92B534961747}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{CDCDC50F-892D-46C0-939C-92B534961747}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Release|.NET.ActiveCfg = Release|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Release|Any CPU.Build.0 = Release|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{C2D407F5-C26E-4BDC-B4CE-74B6CA186872}.Release|Mixed Platforms.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
India India

I Started my Programming career with C++. Later got a chance to develop Windows Form applications using C#. Currently using C#, ASP.NET & ASP.NET MVC to create Information Systems, e-commerce/e-governance Portals and Data driven websites.

My interests involves Programming, Website development and Learning/Teaching subjects related to Computer Science/Information Systems. IMO, C# is the best programming language and I love working with C# and other Microsoft Technologies.

  • Microsoft Certified Technology Specialist (MCTS): Web Applications Development with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Accessing Data with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Windows Communication Foundation Development with Microsoft .NET Framework 4

If you like my articles, please visit my website for more: www.rahulrajatsingh.com[^]

  • Microsoft MVP 2015

Comments and Discussions