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

How to Develop a Simple Vertical Text Scroller Custom Server Control in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.42/5 (5 votes)
23 Jul 2009CPOL5 min read 38K   332   18  
Step by step on how to create a custom server control in ASP.NET 2.0

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyTextScroller", "MyTextScroller\MyTextScroller.csproj", "{C1392078-AB89-4766-98B2-15665FE0951D}"
EndProject
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "TestMyTextScroller\", "TestMyTextScroller\", "{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}"
	ProjectSection(WebsiteProperties) = preProject
		ProjectReferences = "{C1392078-AB89-4766-98B2-15665FE0951D}|MyTextScroller.dll;"
		Debug.AspNetCompiler.VirtualPath = "/TestMyTextScroller"
		Debug.AspNetCompiler.PhysicalPath = "TestMyTextScroller\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\TestMyTextScroller\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/TestMyTextScroller"
		Release.AspNetCompiler.PhysicalPath = "TestMyTextScroller\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\TestMyTextScroller\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "2189"
		DefaultWebSiteLanguage = "Visual C#"
	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
		{C1392078-AB89-4766-98B2-15665FE0951D}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{C1392078-AB89-4766-98B2-15665FE0951D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C1392078-AB89-4766-98B2-15665FE0951D}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C1392078-AB89-4766-98B2-15665FE0951D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{C1392078-AB89-4766-98B2-15665FE0951D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{C1392078-AB89-4766-98B2-15665FE0951D}.Release|.NET.ActiveCfg = Release|Any CPU
		{C1392078-AB89-4766-98B2-15665FE0951D}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C1392078-AB89-4766-98B2-15665FE0951D}.Release|Any CPU.Build.0 = Release|Any CPU
		{C1392078-AB89-4766-98B2-15665FE0951D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{C1392078-AB89-4766-98B2-15665FE0951D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Debug|.NET.ActiveCfg = Debug|.NET
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Debug|.NET.Build.0 = Debug|.NET
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Debug|Any CPU.ActiveCfg = Debug|.NET
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Debug|Mixed Platforms.ActiveCfg = Debug|.NET
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Debug|Mixed Platforms.Build.0 = Debug|.NET
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Release|.NET.ActiveCfg = Debug|.NET
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Release|.NET.Build.0 = Debug|.NET
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Release|Any CPU.ActiveCfg = Debug|.NET
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Release|Mixed Platforms.ActiveCfg = Debug|.NET
		{6D2B225C-A1EA-4EDD-B43E-186AA8813ED6}.Release|Mixed Platforms.Build.0 = Debug|.NET
	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)
United States United States
I have over 10 years of experience working with Microsoft technologies. I have earned my Microsoft Certified Technology Specialist (MCTS) certification. I'm a highly motivated self-starter with an aptitude for learning new skills quickly.

Comments and Discussions