Ejemplo n.º 1
0
  }//public string FilenameQuartz

  /// <summary>ButtonPause_Click().</summary>
  public void ButtonPause_Click
  (
   Object sender, 
   EventArgs e
  ) 
  {
   string   exceptionMessage         = null;
   
   UtilityQuartz.QuartzPause
   (
    ref exceptionMessage
   );
  }
Ejemplo n.º 2
0
  }//PageCancel()	

  /// <summary>PageSubmit().</summary>
  public void PageSubmit()
  {
   string[] filenameQuartzCurrent    = null;
   string   exceptionMessage         = null;
   
   filenameQuartzCurrent = new string[] { FilenameQuartz }; 
   Feedback   = "";
   
   UtilityQuartz.QuartzPlay
   (
    ref filenameQuartzCurrent,
    ref exceptionMessage
   );
   
  }//PageSubmit()	
Ejemplo n.º 3
0
  /// <summary>Page Load.</summary>
  public void Page_Load
  (
   object     sender, 
   EventArgs  e
  ) 
  {
  
   string databaseConnectionString = null;
     
   serverMapPath = this.MapPath("");
   if ( serverMapPath != null)
   {
    filenameConfigurationXml = serverMapPath + @"\" + filenameConfigurationXml;
   }//if ( serverMapPath != null)

   if ( !Page.IsPostBack )
   {
    UtilityQuartz.ConfigurationFile();

    databaseConnectionString  =  UtilityQuartz.DatabaseConnectionString;
   
   }//if ( !Page.IsPostBack ) 
   
  }//Page_Load