Example #1
0
    protected void btnMerge_Click(object sender, EventArgs e)
    {
        GridViewRow row = ((Button)sender).Parent.Parent as GridViewRow;
        HiddenField HiddenFieldStudentID = (HiddenField)row.Cells[0].FindControl("HiddenFieldStudentID");
        string StudentOID = HiddenFieldStudentID.Value;
        Student std = new Student();
        int id = std.GetStudentOIDByBannerID(Request.QueryString["tempID"]);
        //lblStatus.Text = StudentOID;

        std = std.GetStudentByStudentOID(Convert.ToInt32(StudentOID));
        if (std != null)
        {
            DeleteStudent(std.StudentOID);

            if (std.UpdateTempStudent(std, id) == true)
            {
                std.UpdateTempStudentinAnswer(Request.QueryString["id"], Request.QueryString["tempID"]);
                populate(Request.QueryString["id"]);
                lblStatus.ForeColor = Color.Red;
                lblStatus.Font.Size = 12;
                lblStatus.Font.Bold = true;
                lblStatus.Text = "Successfully Merged With Orginal Student";
            }
            else
            {
                lblStatus.ForeColor = Color.Red;
                lblStatus.Font.Size = 12;
                lblStatus.Font.Bold = true;
                lblStatus.Text = "Merging Fail...";
            }
        }
    }
Example #2
0
 private void Populate(string strID)
 {
     Student stu = new Student();
     stu=stu.GetStudentByStudentOID(strID);
     if (stu != null)
     {
         lbtnStudentName.Text = stu.FullName;
         lbtnID.Text = stu.StudentID;
         //lblDate.Text = Convert.ToString(stu.LatestTestingDate);
         Session["StudentID"] = lbtnID.Text.ToString();
     }
 }
Example #3
0
 private void Populate(string bannerid)
 {
     Student stu = new Student();
     stu = stu.GetStudentByStudentOID(bannerid);
     if (stu != null)
     {
         TextBoxBannerID.Text = stu.StudentID;
         if (stu.FirstName != null)
         {
             TextBoxFirstName.Text = stu.FirstName;
         }
         if (stu.LastName  != null)
         {
             TextBoxLastName.Text = stu.LastName;
         }
     }
     else
     {
         LabelMsg.Text = "Please Fill Up Regitration Page again";
     }
 }
Example #4
0
    private void Populate(string strID)
    {
        Student stu = new Student();
        stu = stu.GetStudentByStudentOID(strID);
        lblStudentName.Text = stu.FullName;
        lblID.Text = stu.StudentID;

        //if (stu.LatestTestingDate != null)
        //{
        //    lblDate.Text = stu.LatestTestingDate.ToString();
        //}
        if (stu.BirthDate != null)
        {
            lblBirth.Text = Convert.ToDateTime(stu.BirthDate.ToString()).ToShortDateString();
        }
        Session["StudentID"] = lblID.Text.ToString();
        getID = lblID.Text;
        lblTelephone.Text = stu.HomeTelephoneNumber;
        if (stu.CumulativeGPA.ToString().Length == 3)
        {
            lblCumulativeGPA.Text = stu.CumulativeGPA.ToString() + "0";
        }
        else if (stu.CumulativeGPA.ToString().Length == 1)
        {
            lblCumulativeGPA.Text = stu.CumulativeGPA.ToString() + ".00";
        }
        else
        {
            lblCumulativeGPA.Text = stu.CumulativeGPA.ToString();
        }
        lblCVTCProgram.Text = stu.MajorProgramEnrollment;
        lblCreditAttempted.Text = stu.CreditAttempted.ToString();
        lblCreditEarned.Text = stu.CreditEarned.ToString();

        lblHSname.Text = stu.HighSchoolName;
        lblgraddate.Text = stu.HighSchoolGraduationDate.ToShortDateString();
        lblacte.Text = stu.EnglishAssessmentScore;
        lblactm.Text = stu.MathAssessmentScore;
        lblactr.Text = stu.ReadingAssessmentScore;
        lblacts.Text = stu.ScienceAssessmentScore;
        lblalgebra.Text = stu.CompassalgebraTestScore;
        lblprealgebra.Text = stu.PrealgebraTestScore;
        lblreading.Text = stu.CompassReadingTestScore;
        lblwritting.Text = stu.CompassWrittingTestScore;
        lblPreProgram.Text = stu.PreprogramIndicator;

        LabelMC.Text = "Multicultural";//(stu.MC == "0") ? "" : stu.MC;
        if (stu.MC != "0" && stu.MC != null)
        {
            LabelMC.Visible = true;
            LabelMC.ForeColor = System.Drawing.Color.Red;
        }
        else
        {
            LabelMC.Visible = false;
        }
        //else
        //{
        //    LabelMC.ForeColor = System.Drawing.Color.Black;
        //}
        LabelNTO.Text = "NTO";//(stu.NTO == "0") ? "" : stu.NTO;
        if (stu.NTO != "0" && stu.NTO != null)
        {
            LabelNTO.Visible = true;
            LabelNTO.ForeColor = System.Drawing.Color.Red;
        }

        else
        {
            LabelNTO.Visible = false;
        }
        //else
        //{
        //    LabelNTO.ForeColor = System.Drawing.Color.Black;
        //}
        LabelAllert.Text = "Alert";//(stu.ALLERT == "0") ? "" : stu.ALLERT;
        if (stu.ALLERT != "0" && stu.ALLERT != null)
        {
            LabelAllert.Visible = true;
            LabelAllert.ForeColor = System.Drawing.Color.Red;
        }
        else
        {
            LabelAllert.Visible = false;
        }
        //else
        //{
        //    LabelAllert.ForeColor = System.Drawing.Color.Black;
        //}
        LabelPell.Text = "PELL";//(stu.PELL == "0") ? "" : stu.PELL;
        if (stu.PELL != "0" && stu.PELL != null)
        {
            LabelPell.Visible = true;
            LabelPell.ForeColor = System.Drawing.Color.Red;
        }
        else
        {
            LabelPell.Visible = false;
        }
        //else
        //{
        //    LabelPell.ForeColor = System.Drawing.Color.Black;
        //}
        LabelRVP.Text = "River Falls";//(stu.RVP == "0") ? "" : stu.RVP;
        if (stu.RVP != "0" && stu.RVP != null)
        {
            LabelRVP.Visible = true;
            LabelRVP.ForeColor = System.Drawing.Color.Red;
        }
        else
        {
            LabelRVP.Visible = false;
        }
        //else
        //{
        //    LabelRVP.ForeColor = System.Drawing.Color.Black;
        //}
    }
Example #5
0
    protected void ButtonSubmit_Click(object sender, EventArgs e)
    {
        try
        {

            if ((string.IsNullOrEmpty(TextBoxLatestAction.Value)) || (string.IsNullOrEmpty(TextBoxLatestContact.Value)))
            {
                LabelStatus.Text = "Please Enter Action and Contact Date";
                return;
            }

            Interventions interventions = new Interventions();

            //Changed by Babul 20111103
          //int  strInterventionOID = interventions.GetInterventionOIDByInterventionName(DropDownListIntervention.SelectedItem.ToString());
            int strInterventionOID = 0;
            if (DropDownListIntervention.SelectedIndex == -1)
            {
                strInterventionOID = 1;
            }
            else
            {
                strInterventionOID = interventions.GetInterventionOIDByInterventionName(DropDownListIntervention.SelectedItem.ToString());
            }
            //

           interventions.InterventionOID = strInterventionOID;
           Domain domain=new Domain ();
           int DomainIOD = domain.GetDomainOIDByDomainName(DropDownListDomain.SelectedItem.ToString());
           interventions.DomainOID = DomainIOD;
           User user = new User();
           int UserIOD = user.GetUserOIDByUserName(DropDownListAdvocate.SelectedItem.ToString());
           interventions.UserOID = UserIOD;

           if (ViewState["POID"] == null)
           {
               studentid = Session["StudentID"].ToString();
               Student student = new Student();
               int StudentOID = student.GetStudentOIDByStudentBannerID(studentid);
               interventions.StudentOID = StudentOID;
               ViewState["studentID"]=studentid;
           }
           else
           {
               interventions.StudentOID = Convert.ToInt32(ViewState["studentID"]);
           }
           //interventions.LatestActionDate = TextBoxLatestAction.Text.ToString();
           //interventions.LatestContact = TextBoxLatestContact.Text.ToString();
           interventions.LatestActionDate = TextBoxLatestAction.Value.ToString();
           interventions.LatestContact = TextBoxLatestContact.Value.ToString();
           interventions.CreatedBy = (Session["CurrentUser"] != null) ? ((User)Session["CurrentUser"]).UserOID : 0;
           if (CheckBoxListLeft.Items[0].Selected)
           {
               interventions.Urgent = 1;

           }
           else
           {
               interventions.Urgent = 0;
           }
           if (CheckBoxListLeft.Items[1].Selected)
           {
               interventions.Internal = 1;
           }
           else
           {
               interventions.Internal = 0;
           }

           if (CheckBoxListLeft.Items[2].Selected)
           {
               interventions.Prescribed = 1;
           }
           else
           {
               interventions.Prescribed = 0;
           }

           if (CheckBoxListLeft.Items[3].Selected)
           {
               interventions.Participating = 1;
           }
           else
           {
               interventions.Participating = 0;
           }
           if (CheckBoxListLeft.Items[4].Selected)
           {
               interventions.Completed = 1;
           }
           else
           {
               interventions.Completed = 0;
           }

           if (CheckBoxListRight.Items[0].Selected)
           {
               interventions.Email = 1;
           }
           else
           {
               interventions.Email = 0;
           }
           if (CheckBoxListRight.Items[1].Selected)
           {
               interventions.Telephone = 1;
           }
           else
           {
               interventions.Telephone = 0;
           }
           if (CheckBoxListRight.Items[2].Selected)
           {
               interventions.InPerson = 1;
           }
           else
           {
               interventions.InPerson = 0;
           }
           if (CheckBoxListRight.Items[3].Selected)
           {
               interventions.HandOff = 1;
           }
           else
           {
               interventions.HandOff = 0;
           }
           if (CheckBoxTesting.Checked == true)
           {
               interventions.Testing = 1;
           }
           else
           {
               interventions.Testing = 0;
           }
           interventions.Comment = TextBoxContactNotes.Text.Trim();
           interventions.RiskOID = 0;
           Assessment assment=new Assessment ();
           interventions.AssessmentOID = assment.GetAssessmentOIDByAssessmentName(ddlAssessment.SelectedItem.Text);
           if (ViewState["POID"] == null)
           {
               if (interventions.AddInterventions() > 0)
               {
                   LabelStatus.Text = "Saved Successfully.";
               }
               else
               {
                   LabelStatus.Text = "Save Failed.";
               }
               ViewState["POID"] = interventions.PrescriptionOID;

           }
           else
           {
               interventions.PrescriptionOID=Convert.ToInt32(ViewState["POID"].ToString());
               if (interventions.UpdateInterventions())
               {
                   LabelStatus.Text = "Update Successfully.";
               }
               else
               {
                   LabelStatus.Text = "Update Failed.";
               }
           }

            //Sending Email For Hand Off
           try
           {
               if (interventions.HandOff == 1)
               {
                   string toEmail = null;
                   if (ConfigurationManager.AppSettings["productionMode"].ToString() == "OFF")
                   {
                       toEmail = ConfigurationManager.AppSettings["toEmail"].ToString();
                   }
                   else
                   {

                       //Get Student Email Address By ID
                       studentid = Session["StudentID"].ToString();
                       Student stu = new Student();
                       stu = stu.GetStudentByStudentOID(studentid);
                       if (stu != null)
                       {
                           if (stu.EmailAddress != null)
                           {
                               toEmail = stu.EmailAddress;
                           }

                       }

                       //toEmail = ConfigurationManager.AppSettings["toEmail"].ToString();
                   }

                   #region Handoff Body
                   string  html = null ;
                   html += "<table style='width: 100%; '>";
                   html += "<tr><td colspan='4'> <h3>Handoff Details of " + DropDownListIntervention.SelectedItem.ToString() + " Intervention</h3></td></tr>";
                   html += "<tr><td >&nbsp;</td><td style='background-color:#727272;width:100px;'> Assessment</td><td>" + ddlAssessment.Text + "</td><td></td></tr>";
                   html += "<tr><td >&nbsp;</td><td style='background-color:#727272;width:100px;'> Domain</td><td>" + DropDownListDomain.SelectedItem.ToString() + "</td><td></td></tr>";
                   html += "<tr><td >&nbsp;</td><td style='background-color:#727272;width:100px;'> Intervention</td><td>" + DropDownListIntervention.SelectedItem.ToString() + "</td><td></td></tr>";
                   html += "<tr><td >&nbsp;</td><td > &nbsp;</td><td style='background-color:#727272; width:150px;'>User Name  </td><td>" + DropDownListAdvocate.SelectedItem.ToString() + "</td></tr>";
                   html += "<tr><td >&nbsp;</td><td > &nbsp;</td><td style='background-color:#727272; width:100px;'>Action Date </td><td>" + TextBoxLatestAction.Value.ToString();
                   html += "&nbsp;&nbsp;Prescribed&nbsp;";
                   if (interventions.Prescribed == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }

                   html += "&nbsp;Participating&nbsp;";
                   if (interventions.Participating == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }

                   html += "&nbsp;Internal&nbsp;";
                   if (interventions.Internal == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }

                   html += "&nbsp;Urgent&nbsp;";
                   if (interventions.Urgent == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }

                   html += "&nbsp;Completed&nbsp;";
                   if (interventions.Completed == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }

                   html += "</td></tr>";
                   html += "<tr><td >&nbsp;</td><td > &nbsp;</td><td style='background-color:#727272; width:100px;'>Contact Date </td><td>" + TextBoxLatestContact.Value.ToString();
                   html += "&nbsp;&nbsp;Email&nbsp;";
                   if (interventions.Email == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }
                   html += "&nbsp;&nbsp;Telephone&nbsp;";
                   if (interventions.Telephone == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }
                   html += "&nbsp;&nbsp;In Person&nbsp;";
                   if (interventions.InPerson == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }
                   html += "&nbsp;&nbsp;Hand-Off&nbsp;";
                   if (interventions.HandOff == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }
                   html += "&nbsp;&nbsp;Testing&nbsp;";
                   if (interventions.Testing == 1)
                   {
                       html += "<img alt='yes' src='../../images/tic-pic.png' />";
                   }
                   else
                   {
                       html += "<img alt='no' src='../../images/nonetic-pic.png' />";
                   }

                   html += "</td></tr>";
                   html += "<tr><td >&nbsp;</td><td > &nbsp;</td><td style='background-color:#727272; width:100px;'>Comments: </td><td>" + TextBoxContactNotes.Text;
                   html += "</table>";
                   #endregion

                   if (SendMail(toEmail, "You have got a Handoff", html))
                   {
                       LabelStatus.Text = "Eamil  Sent  .. Successfully";
                   }
                   else
                   {
                       LabelStatus.Text = "Eamil Not Sent  .. Please contact with admin ";
                   }
               }
           }
           catch (Exception ae)
           {
               LabelStatus.Text = "Eamil Not Sent  .. Please contact with admin ";
           }
            //End Sending Mail For Hand Off
        }

        catch (Exception ex)
        {

        }
    }
Example #6
0
    private void Populate(string BannerID)
    {
        Student stu = new Student();
        stu = stu.GetStudentByStudentOID(BannerID);
        if (stu != null)
        {
            TextBoxBannerID.Text = stu.StudentID;
            TextLastName.Text = stu.LastName;
            TextFirstName.Text = stu.FirstName;
            if (stu.MiddleName!=null )
            {
            TextMiddleName.Value  = stu.MiddleName.Trim ();
            }
            if(stu.ProgramEnrollment!=null )
            {
            TextTerm.Text = stu.ProgramEnrollment;
            }
            if (stu.BirthDate != null )
            {
                if (stu.BirthDate.ToString().Length > 11)
                {
                    //Date1.CalendarDateString =Convert .ToString ( stu.BirthDate).Substring (0,8);
                    TextBirthDate.Value = stu.BirthDate.ToString().Substring(0, stu.BirthDate.ToString().Length - 12);
                }
            }
            TextBoxPriorCredit.Text = stu.PriorCreditQuestion;
            if (stu.MajorProgramEnrollment != null)
            {
                txtProgramInterest.Text = stu.MajorProgramEnrollment;
            }
            DropDownListStatus.Text = stu.Status;

        }
        createSession();
    }