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

Model View Presenter Pattern Implementation in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.58/5 (6 votes)
8 Dec 2010CPOL3 min read 38.5K   901   15  
This article shows how to implement model view presenter(MVP) pattern in ASP.NET

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cSharpWebSite", "cSharpWebSite\cSharpWebSite.csproj", "{E3238DC5-2264-4049-B010-C19398C3770D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cSharpWebSite.BLL", "cSharpWebSite.BLL\cSharpWebSite.BLL.csproj", "{E180E39C-C8E3-456E-83C8-5CE9A861EC56}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "cSharpWebSite.UnitTest", "cSharpWebSite.UnitTest\cSharpWebSite.UnitTest.csproj", "{0CF65A50-6E6F-4DA2-BAC4-6DCFD2F0CD6D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{93718C4B-A062-417B-BD18-68CADA2712DA}"
	ProjectSection(SolutionItems) = preProject
		cSharpWebSite.vsmdi = cSharpWebSite.vsmdi
		Local.testsettings = Local.testsettings
		TraceAndTestImpact.testsettings = TraceAndTestImpact.testsettings
	EndProjectSection
EndProject
Global
	GlobalSection(TestCaseManagementSettings) = postSolution
		CategoryFile = cSharpWebSite.vsmdi
	EndGlobalSection
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{E3238DC5-2264-4049-B010-C19398C3770D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{E3238DC5-2264-4049-B010-C19398C3770D}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{E3238DC5-2264-4049-B010-C19398C3770D}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{E3238DC5-2264-4049-B010-C19398C3770D}.Release|Any CPU.Build.0 = Release|Any CPU
		{E180E39C-C8E3-456E-83C8-5CE9A861EC56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{E180E39C-C8E3-456E-83C8-5CE9A861EC56}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{E180E39C-C8E3-456E-83C8-5CE9A861EC56}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{E180E39C-C8E3-456E-83C8-5CE9A861EC56}.Release|Any CPU.Build.0 = Release|Any CPU
		{0CF65A50-6E6F-4DA2-BAC4-6DCFD2F0CD6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{0CF65A50-6E6F-4DA2-BAC4-6DCFD2F0CD6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{0CF65A50-6E6F-4DA2-BAC4-6DCFD2F0CD6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{0CF65A50-6E6F-4DA2-BAC4-6DCFD2F0CD6D}.Release|Any CPU.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
Technical Lead
India India
A community lover and consultant working with Microsoft suite of products. Since 2005, he has been working in application development and maintenance using different Microsoft products. During his leisure time, he prefers to serve different Microsoft communities and learning new technologies. You can reach him at his blog DotNet Artisan

Comments and Discussions