コード例 #1
0
ファイル: init-data.ascx.cs プロジェクト: yhhno/Membership
 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
 }