CAESDO.Recruitment.Web.Shared_ApplicationReview.btnDownloadAllPlusReferences_Click C# (CSharp) Method

btnDownloadAllPlusReferences_Click() protected method

protected btnDownloadAllPlusReferences_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        protected void btnDownloadAllPlusReferences_Click(object sender, EventArgs e)
        {
            bool success = FileBLL.DownloadByApplication(currentApplication, true); //Include references

            if (!success)
            {
                lblDownloadAllStatus.Text = "Files could not be combined successfully.";
            }
        }