Hi folks,
I just tried to implement Uploadify on my website using this guide:
http://www.aspsnippets.com/Articles/Implement-Uploadify-jQuery-Plugin-in-ASPNet.aspx
I followed every step of the guide, but when I try to access the page with the upload the following script runs, but the FileUpload stays a plain old FileUpload.
<script type = "text/javascript">
$(window).load(
function () {
$("#<%=FileUpload.ClientID %>").fileUpload({
'uploader': 'scripts/uploadify.swf',
'cancelImg': 'img/uploadify-cancel.png',
'buttonText': 'Browse Files',
'script': 'UploadHandler.ashx',
'folder': 'App_Data/Files',
'fileDesc': 'Image Files',
'fileExt': '*.jpg;*.jpeg;*.gif;*.png',
'multi': true,
'auto': true
});
}
);
</script>
Any suggestions as to what the problem might be?
I'd appreciate any help!