protected void btnCargarJobaBD_Click(object sender, EventArgs e)
        {
            cJob objCJobProyectoHomologado = new cJob();
            string trailingPath = "";
            string fullPath = "";
            int intIdCodAppH = int.Parse(Session["intIdCodAppH"].ToString());

                if (fupJobAbaseDeDatos.FileBytes.Length > 0)
                {
                trailingPath = Path.GetFileName(fupJobAbaseDeDatos.PostedFile.FileName + DateTime.Now.ToString("yyyyMMddHHmmss"));
                fullPath = Path.Combine(Server.MapPath(@"..\jobclients"), trailingPath);
                fupJobAbaseDeDatos.SaveAs(fullPath);
                lblMensaje.Text = fullPath;
                lblMensaje.Text = fupJobAbaseDeDatos.ToString() + " - " + Session["intIdCodAppH"].ToString() + " - " + fullPath;                                               //En caso se presente error

                lblMensaje.Text = objCJobProyectoHomologado.insertarJobProyectoHomologacion(fupJobAbaseDeDatos, intIdCodAppH , fullPath);                                               //En caso se presente error
                cJob objCJob = new cJob();
                lblMensaje.Text = objCJob.cRealizarAnalisisJobProyectoHomologacion();
                Session["intIdJob"] = objCJob.cUtilIdJobsHomologados(intIdCodAppH);
                flagCargaJob = 1;

                }
                else
                {
                    lblMensaje.Text = "Seleccione Archivo";
                }
        }
        protected void btnCargarJobaBD_Click(object sender, EventArgs e)
        {
            cJob objCJobProyectoHomologado = new cJob();

            FileInfo f = new FileInfo(Server.MapPath("C:\\Inetpub\\wwwroot\\WebHomologacion\\ArchivosTemporales") + "\\" + "archivoTemp.txt");
            System.IO.File.Copy(fupJobAbaseDeDatos.PostedFile.FileName.Replace(fupJobAbaseDeDatos.FileName, "") + "" + fupJobAbaseDeDatos.FileName, Server.MapPath("C:\\Inetpub\\wwwroot\\WebHomologacion\\ArchivosTemporales") + "\\" + "archivoTemp.txt", true);

            //lblMensaje.Text = objCJobProyectoHomologado.insertarJobProyectoHomologacion(fupJobAbaseDeDatos, int.Parse(Session["intIdCodAppH"].ToString()), f);                                               //En caso se presente error

                //lblMensaje.Text = objCJobProyectoHomologado.insertarJobProyectoHomologacion(fupJobAbaseDeDatos, int.Parse(Session["intIdCodAppH"].ToString()));                                               //En caso se presente error
                cJob objCJob = new cJob();
                lblMensaje.Text = objCJob.cRealizarAnalisisJobProyectoHomologacion();
                Session["intIdJob"] = objCJob.cUtilIdJobsHomologados(int.Parse(Session["intIdCodAppH"].ToString()));
                flagCargaJob = 1;
        }