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

Server-Side Asynchronous Methods for ASP.NET and WinFX

Rate me:
Please Sign up or sign in to vote.
4.73/5 (17 votes)
6 Apr 2006CPOL11 min read 79.2K   223   62  
An article that describes how to create server-side asynchronous service methods for ASP.NET and WinFX, thereby freeing up resources on the server to handle more clients simultaenously.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApplication1", "ConsoleApplication\ConsoleApplication1.csproj", "{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}"
EndProject
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "C:\...\WebSite\", "WebSite\", "{F13FA980-A979-4417-A7EC-21DA0649815A}"
	ProjectSection(WebsiteProperties) = preProject
		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 = "1440"
	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
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Release|.NET.ActiveCfg = Release|Any CPU
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Release|Any CPU.Build.0 = Release|Any CPU
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{EFD74A1F-853C-4AEA-83CD-A8DB27E196FB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{F13FA980-A979-4417-A7EC-21DA0649815A}.Debug|.NET.ActiveCfg = Debug|.NET
		{F13FA980-A979-4417-A7EC-21DA0649815A}.Debug|.NET.Build.0 = Debug|.NET
		{F13FA980-A979-4417-A7EC-21DA0649815A}.Debug|Any CPU.ActiveCfg = Debug|.NET
		{F13FA980-A979-4417-A7EC-21DA0649815A}.Debug|Mixed Platforms.ActiveCfg = Debug|.NET
		{F13FA980-A979-4417-A7EC-21DA0649815A}.Debug|Mixed Platforms.Build.0 = Debug|.NET
		{F13FA980-A979-4417-A7EC-21DA0649815A}.Release|.NET.ActiveCfg = Debug|.NET
		{F13FA980-A979-4417-A7EC-21DA0649815A}.Release|.NET.Build.0 = Debug|.NET
		{F13FA980-A979-4417-A7EC-21DA0649815A}.Release|Any CPU.ActiveCfg = Debug|.NET
		{F13FA980-A979-4417-A7EC-21DA0649815A}.Release|Mixed Platforms.ActiveCfg = Debug|.NET
		{F13FA980-A979-4417-A7EC-21DA0649815A}.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 Kingdom United Kingdom
I live with my wife in Bournemouth in the UK. She consistently inspires me to be the person I know I should be. I enjoy writing music, playing the piano, watching movies, philisophical discussion and eating jaffa cakes.

Comments and Discussions