It looks like you're new here. If you want to get involved, click one of these buttons!
<script src="../../Scripts/jquery-1.4.4.min.js" type="text/javascript"></script>
<link href="../../Content/Uploadify/uploadify.css" rel="stylesheet" type="text/css" />
<script src="../../Content/Uploadify/jquery.uploadify-3.1.js" type="text/javascript"></script>
<input type="file" id="file_upload_1" class="uploadify"/>
<div id="file_upload_1-queue" class="uploadify-queue"></div>
<script type="text/javascript">
$(function () {
$("#file_upload_1").uploadify({
height: 30,
swf: '/uploadify/uploadify.swf',
uploader: '/uploadify/uploadify.php',
width: 120,
checkExisting: '/uploadify/check-exists.php',
queueID:"file_upload_1-queue"
});
});
</script>