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

Client Application Services Walkthrough

Rate me:
Please Sign up or sign in to vote.
3.92/5 (7 votes)
8 Dec 2007CPOL9 min read 56.1K   1.1K   31  
A walkthrough to set up client application services for user logon in a Windows application using ASP.NET membership providers

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "Web", "Web\", "{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}"
	ProjectSection(WebsiteProperties) = preProject
		TargetFramework = "3.5"
		Debug.AspNetCompiler.VirtualPath = "/Web"
		Debug.AspNetCompiler.PhysicalPath = "Web\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\Web\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/Web"
		Release.AspNetCompiler.PhysicalPath = "Web\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\Web\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "2539"
		DefaultWebSiteLanguage = "Visual C#"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}"
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
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Debug|.NET.ActiveCfg = Debug|.NET
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Debug|.NET.Build.0 = Debug|.NET
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Debug|Any CPU.ActiveCfg = Debug|.NET
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Debug|Mixed Platforms.ActiveCfg = Debug|.NET
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Debug|Mixed Platforms.Build.0 = Debug|.NET
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Release|.NET.ActiveCfg = Debug|.NET
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Release|.NET.Build.0 = Debug|.NET
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Release|Any CPU.ActiveCfg = Debug|.NET
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Release|Mixed Platforms.ActiveCfg = Debug|.NET
		{C3E8491B-DCF8-4FB7-8B44-8889B533AF24}.Release|Mixed Platforms.Build.0 = Debug|.NET
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Release|.NET.ActiveCfg = Release|Any CPU
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Release|Any CPU.Build.0 = Release|Any CPU
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{86C52C1B-F03C-4946-BCA0-0AE315DA77A0}.Release|Mixed Platforms.Build.0 = Release|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
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions