Hi:
Yes, the video series are very good. My control is pretty simple and I'm not using a features config file. I am simply visiting the feature settings for the control. My simple ccontrol is shown below.
Â
namespace MyControls.SimpleControl {
      public partial class MySimpleControl : SiteModuleControl
             {
                       private string btnString = "MyString";
                       protected override void OnInit(EventArgs e) {
                                         base.OnInit(e);
                                        this.Load += newEventHandler(Page_Load);
                         }
Â
                        protected void Page_Load(object sender, EventArgs e) {
                                     LoadSettings();
                                     PopulateControls();
                          }
                           private void PopulateControls() {
                                   if (this.ModuleConfiguration != null)
                                        {
                                                      this.Title = this.ModuleConfiguration.ModuleTitle;
                                                      this.Description = this.ModuleConfiguration.FeatureName;
                                         }
                                   Â
                                             Button1.Text = btnString;
                         }
                                 private void LoadSettings() {
                                                if (Settings.Contains("BtnString"))
                                                 {
                                                              btnString = Settings["BtnString"].ToString();
                                                   }
                            }
                    }
}
Â