/// <summary>
 /// Handles Click event of btnAdd control
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 protected void btnAdd_Click(object sender, EventArgs e)
 {
     CurrentDesiredJobBAL currentDesiredJobBAL = new CurrentDesiredJobBAL();
     CurrentDesiredJobEntity currentDesiredJobEntity = new CurrentDesiredJobEntity();
     currentDesiredJobEntity.RoleSkills = txtAddSkill.Text.Trim();
     currentDesiredJobBAL.AddRoleSkillsDetailsBAL(currentDesiredJobEntity);
     divAddMoreSkills.Visible = false;
 }