Monday, 17 April 2017

download file

   /****************************************************************/

        //download file

        /***************************************************************/
        function downloadJDFiles() {
            var fileName = document.getElementById('TxtJdDocPath').value;
            var pathFile = "/DocFile/" + fileName;

            $('#uploadedfiles').attr('href', pathFile);
        }


        function FinaldownloadJDFiles() {
            var Name = document.getElementById('lblFileUpload');
            var fileName = Name.innerHTML;
            var pathFile = "/DocFile/" + fileName;

            $('#Downloadfile').attr('href', pathFile);
        }

        function getfileUploadData(fileName) {
            document.getElementById('TxtJdDocPath').value = fileName;

        }

No comments:

Post a Comment