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

Event Calendar [ ASP.NET 2.0 / C# ]

Rate me:
Please Sign up or sign in to vote.
4.49/5 (62 votes)
18 May 2008CPOL4 min read 853.8K   38.7K   257  
Basic Calendar Control of ASP.NET 2.0 can be extended to cater one of most frequent requirement of tracking events, project milestones, history, schedule etc.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EventCalendar", "EventCalendar\EventCalendar.csproj", "{3899BDA0-D8C8-4295-8139-C7892923A61C}"
EndProject
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "http://localhost/EventCalendarDemo2005/", "http://localhost/EventCalendarDemo2005", "{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}"
	ProjectSection(WebsiteProperties) = preProject
		ProjectReferences = "{3899BDA0-D8C8-4295-8139-C7892923A61C}|EventCalendar.dll;"
		Debug.AspNetCompiler.VirtualPath = "/EventCalendarDemo2005"
		Debug.AspNetCompiler.PhysicalPath = "EventCalendarDemo2005\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\EventCalendarDemo2005\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/EventCalendarDemo2005"
		Release.AspNetCompiler.PhysicalPath = "EventCalendarDemo2005\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\EventCalendarDemo2005\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		SlnRelativePath = "EventCalendarDemo2005\"
	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
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Release|.NET.ActiveCfg = Release|Any CPU
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Release|Any CPU.Build.0 = Release|Any CPU
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{3899BDA0-D8C8-4295-8139-C7892923A61C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.Debug|.NET.ActiveCfg = Debug|.NET
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.Debug|.NET.Build.0 = Debug|.NET
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.Debug|Any CPU.ActiveCfg = Debug|.NET
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.Debug|Mixed Platforms.ActiveCfg = Debug|.NET
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.Debug|Mixed Platforms.Build.0 = Debug|.NET
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.Release|.NET.ActiveCfg = Debug|.NET
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.Release|.NET.Build.0 = Debug|.NET
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.Release|Any CPU.ActiveCfg = Debug|.NET
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.Release|Mixed Platforms.ActiveCfg = Debug|.NET
		{6E0025A0-BA54-4F55-AFCB-A7AFC281D162}.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
Web Developer
United States United States
.NET Professional, working with a leading global firm.

Primarily works in .NET using C# with Oracle and MS SQL Server 2000 as backend.

Learning .Net ...

[ My Linked In Profile ^ ]

Comments and Discussions