Inheritance: Castle.MonoRail.Framework.WizardStepPage
コード例 #1
0
        protected override void RenderWizardView()
        {
            Account account = MainInfoStep.GetAccountFromSession(Session);

            // AccountService.Create(account);
            // Session.Remove("account");

            base.RenderWizardView();
        }
コード例 #2
0
        public void Save()
        {
            Account account = MainInfoStep.GetAccountFromSession(Session);

            String[] interests = (String[])ConvertUtils.Convert(
                typeof(String[]), Params["interests"], "interests", null, Params);

            account.Interests = interests;

            DoNavigate();
        }
コード例 #3
0
        protected override void RenderWizardView()
        {
            PropertyBag.Add("account", MainInfoStep.GetAccountFromSession(Session));

            base.RenderWizardView();
        }