Click here to Skip to main content
15,895,746 members
Articles / Web Development / HTML

Using the .NET 2.0 Built-In Support for AJAX

Rate me:
Please Sign up or sign in to vote.
4.26/5 (8 votes)
22 Jun 2007CPOL7 min read 44.8K   43  
This article shows how to create a simple AJAX enabled control using only the built-in features of .NET 2.0.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DrainCleaner.Controls", "DrainCleaner.Controls\DrainCleaner.Controls.csproj", "{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}"
EndProject
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "C:\...\WebSite\", "WebSite", "{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}"
	ProjectSection(WebsiteProperties) = preProject
		ProjectReferences = "{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}|DrainCleaner.Controls.dll;"
		Debug.AspNetCompiler.VirtualPath = "/WebSite"
		Debug.AspNetCompiler.PhysicalPath = "WebSite\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\WebSite\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/WebSite"
		Release.AspNetCompiler.PhysicalPath = "WebSite\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\WebSite\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "2344"
	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
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Release|.NET.ActiveCfg = Release|Any CPU
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Release|Any CPU.Build.0 = Release|Any CPU
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{E759BA8D-D9E1-44BD-8011-1B3F8F6C5AF2}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.Debug|.NET.ActiveCfg = Debug|.NET
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.Debug|.NET.Build.0 = Debug|.NET
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.Debug|Any CPU.ActiveCfg = Debug|.NET
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.Debug|Mixed Platforms.ActiveCfg = Debug|.NET
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.Debug|Mixed Platforms.Build.0 = Debug|.NET
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.Release|.NET.ActiveCfg = Debug|.NET
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.Release|.NET.Build.0 = Debug|.NET
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.Release|Any CPU.ActiveCfg = Debug|.NET
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.Release|Mixed Platforms.ActiveCfg = Debug|.NET
		{74E68FD6-24AC-4039-99FD-FD0FBCAD39D0}.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
South Africa South Africa

Comments and Discussions