/**/
        public string SubirImage()
        {
            string imgName = "";
            int    imgSize = 0;
            string imgPath = "";

            if (ImgFile.PostedFile != null && ImgFile.FileName != " ")
            {
                imgName = ImgFile.FileName;
                imgPath = "Images/" + imgName;
                imgSize = ImgFile.PostedFile.ContentLength;
                if (imgSize > 10240)
                {
                    return("error");
                }
                else
                {
                    String dir = Server.MapPath(imgPath).Replace("\\PaginasInstructor", "");
                    ImgFile.SaveAs(dir);
                    return(imgPath);
                }
            }

            return("error");
        }