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

Add an RSS Feed Through a Custom Control

Rate me:
Please Sign up or sign in to vote.
4.09/5 (3 votes)
10 Nov 20064 min read 70K   476   37  
This article describes the construction of a very simple custom server control used to display the content returned from an RSS feed.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "RssControl", "RssControl\RssControl.vbproj", "{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}"
EndProject
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "http://localhost/RssWebSite/", "http://localhost/RssWebSite", "{EC25F103-40E3-4F2C-8C68-A85B80E01818}"
	ProjectSection(WebsiteProperties) = preProject
		ProjectReferences = "{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}|RssControl.dll;"
		Debug.AspNetCompiler.VirtualPath = "/RssWebSite"
		Debug.AspNetCompiler.PhysicalPath = "..\..\..\..\inetpub\wwwroot\RssWebSite\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\RssWebSite\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/RssWebSite"
		Release.AspNetCompiler.PhysicalPath = "..\..\..\..\inetpub\wwwroot\RssWebSite\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\RssWebSite\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		SlnRelativePath = "..\..\..\..\inetpub\wwwroot\RssWebSite\"
		DefaultWebSiteLanguage = "Visual Basic"
	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
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Release|.NET.ActiveCfg = Release|Any CPU
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Release|Any CPU.Build.0 = Release|Any CPU
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{96FDEBDD-8DDF-49F8-8D4E-EA3F3AA6882B}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.Debug|.NET.ActiveCfg = Debug|.NET
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.Debug|.NET.Build.0 = Debug|.NET
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.Debug|Any CPU.ActiveCfg = Debug|.NET
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.Debug|Mixed Platforms.ActiveCfg = Debug|.NET
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.Debug|Mixed Platforms.Build.0 = Debug|.NET
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.Release|.NET.ActiveCfg = Debug|.NET
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.Release|.NET.Build.0 = Debug|.NET
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.Release|Any CPU.ActiveCfg = Debug|.NET
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.Release|Mixed Platforms.ActiveCfg = Debug|.NET
		{EC25F103-40E3-4F2C-8C68-A85B80E01818}.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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
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