//.....................................................................
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ButtonExecJSP_Click(object sender, EventArgs e)
        {
            string htmlfile = this.TextHtmlJSP.Text;

            WebAppExecution.RunTomcat(htmlfile);

            return;
        }
        //.....................................................................
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ButtonExecPHP_Click(object sender, EventArgs e)
        {
            string htmlfile = this.TextHtmlPHP.Text;

            this.AppINI.Plus(this.CONST_LAST_PHP_FILE, htmlfile);
            this.AppINI.Save( );

            WebAppExecution.RunApache(htmlfile);

            return;
        }
        //.....................................................................
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ButtonFirefoxPHP_Click(object sender, EventArgs e)
        {
            string firefox = @"C:\Program Files\Mozilla Firefox\firefox.exe";

            string htmlfile = this.TextHtmlPHP.Text;

            this.AppINI.Plus(this.CONST_LAST_PHP_FILE, htmlfile);
            this.AppINI.Save( );

            WebAppExecution.RunApache(htmlfile, firefox);

            return;
        }