protected void ApplyButton_Click(object sender, EventArgs e)
 {
     JobsModule myJobsModule = new JobsModule();
     myJobsModule.enterApplicantForJobPosition((String)Session["userID"], Request["pId"]);
     myJobsModule.addRemark(Request["pId"], (String)Session["userID"], RemarkTextBox.Text);
     Response.Redirect("~/ApplicantsJobs.aspx");
 }
 protected void ApplyButton_Click(object sender, EventArgs e)
 {
     JobsModule myJobsModule = new JobsModule();
     if ((myJobsModule.enterApplicantForJobPosition((String)Session["userID"], PositionId.Text)).Equals("Applicant successfully inserted"))
     {
         showAlert();
     }
 }