The RssViewControl visualizes the settings of the Rss feed which have already been saved in the database. They are displayed in the Administration part of
Sitefinity.
The red rectangles in the following screenshot in Figure 1 show the Rss View Control:

Figure 1
In order to implement that functionality, we will create a new class - RssViewControl - and place it in the WebControls.Rss folder of the
project. We will use this control in the module Blogs. RssViewControl will implement the IRssViewControl interface,
and also inherit the CompositeControl class (the basic functionality required by Web controls that contain child controls).
Inherited Members
The following method implements the IRssViewControl interface in the RssViewControl class:
The method public void InitializeSettings(IDictionary<string,string> settings) initializes
the settings:
| InitializeSettings() |
Copy Code |
|
public void InitializeSettings(IDictionary<string, string> settings)
{
this.settings = settings;
}
|