Hi guys, I uploaded the handling of some file uploads to my mvc project, and this part works very well, I just want to know what I will need to add to my controller action in order to access the scriptData variables that I switch from downloadable javascript
EDIT for a more detailed explanation:
my uploadify script looks like this:
var fileCategoryID; $(document).ready(function() { $('#uploadify').uploadify({ 'uploader': '../../scripts/uploadify.swf', 'cancelImg': '../../content/images/cancel.png', 'script': '../../' + $('#Controller').val() + '/FileSave/' + $('#OrderID').val(), 'folder': 'Uploads', 'multi': true, 'auto': false, 'queueSizeLimit': 5, 'queueID': 'fileQueue', 'displayData': 'speed', 'fileExt': '*.pdf', 'fileDesc': 'PDF', 'sizeLimit': '5242880', 'scriptData': { 'categoryID': fileCategoryID } }); $('#fileCategory').change(function() { fileCategoryID = $('#fileCategory').val(); }); });
I am curious how I can access this data from my controller action
asp.net-mvc uploadify
Jimmy
source share