protected void next_Click(object sender, EventArgs e)
        {
#if !DEBUG
            try
            {
#endif
            InstallContext.CreateDataRepo();
            ControlPanelManifest manifest = new ControlPanelManifest();
            InstallContext.InitData(manifest.ExportManifestText());
            this.InstallPage.NextStep();
#if !DEBUG
        }

        catch (Exception ex)
        {
            this.AjaxPage.PageEngine.ShowMessageBox(ex.Message);
            this.AjaxPage.PageEngine.UpdateControlRender(this);
        }
#endif
        }