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

Template Based Multiple Control Validator

Rate me:
Please Sign up or sign in to vote.
4.82/5 (10 votes)
25 Mar 2009CPOL3 min read 39.2K   740   30  
A templated server control that allows us to validate multiple controls with the same validation controls

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ValidationAggregator", "ValidationAggregator\ValidationAggregator.csproj", "{DF56DF27-AC0D-450F-B2AE-E3DBE8218511}"
EndProject
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "SampleWebSite", "SampleWebSite", "{34451BA8-9BDF-420C-9357-269D054302C6}"
	ProjectSection(WebsiteProperties) = preProject
		TargetFramework = "2.0"
		ProjectReferences = "{DF56DF27-AC0D-450F-B2AE-E3DBE8218511}|ValidationAggregator.dll;"
		Debug.AspNetCompiler.VirtualPath = "/SampleWebSite"
		Debug.AspNetCompiler.PhysicalPath = "SampleWebSite\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\SampleWebSite\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/SampleWebSite"
		Release.AspNetCompiler.PhysicalPath = "SampleWebSite\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\SampleWebSite\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "63099"
		DefaultWebSiteLanguage = "Visual C#"
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{DF56DF27-AC0D-450F-B2AE-E3DBE8218511}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{DF56DF27-AC0D-450F-B2AE-E3DBE8218511}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{DF56DF27-AC0D-450F-B2AE-E3DBE8218511}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{DF56DF27-AC0D-450F-B2AE-E3DBE8218511}.Release|Any CPU.Build.0 = Release|Any CPU
		{34451BA8-9BDF-420C-9357-269D054302C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{34451BA8-9BDF-420C-9357-269D054302C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{34451BA8-9BDF-420C-9357-269D054302C6}.Release|Any CPU.ActiveCfg = Debug|Any CPU
		{34451BA8-9BDF-420C-9357-269D054302C6}.Release|Any CPU.Build.0 = Debug|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
Software Developer (Senior)
Algeria Algeria
Fascinated by good architectures, well thought classes and clean code. I work as a software developer since 2004.

Comments and Discussions