Click here to Skip to main content
15,886,761 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
C#
function PostEditSpace() {
                var space =$("#txtSpaceID").val();

                alert("globimg"+globImageUrl);
                var options = new FileUploadOptions();
                options.fileKey="file";
                options.fileName=space+globImageUrl.substr(globImageUrl.lastIndexOf('/')+1);
                options.mimeType="image/jpeg";
                alert("filename"+options.fileName);
                var params = new Object();
                params.SpaceId = $("#txtSpaceID").val();
                params.CollectionImage_ImageDescription = $("#txtComment").val();
                alert("cmmnt"+ $("#txtComment").val()+"Youtube "+ $("#txtYoutube").val());
                params.Collection_ImgUrl = $("#txtPictureLink").val();
                params.CollectionImage_Video1 = $("#txtVimeo").val();
                params.CollectionImage_Video2 = $("#txtYoutube").val();
                options.params = params;
                options.chunkedMode = false;
                var ft = new FileTransfer();

                ft.upload(globImageUrl,"http://somemvc.azurewebsites.net/Home/PostCollectionImage", win, fail, options);
                alert('save data');
                console.log("#txtSpaceID= " + $("#txtSpaceID").val());
            };
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900