protected override void Establish_context()
        {
            base.Establish_context();
            this._sessionTestModel = new SessionTestModel(1);
            this._appSettingModel = new AppSettingModel("The variable");
            this._serverVariablesModel = new ServerVariablesModel(new System.Collections.Specialized.NameValueCollection());

        }
 // GET: AppSetting
 public PartialViewResult Display(AppSettingModel model)
 {
     return PartialView(model);
 }