When using Uploadify, you specify a folder for the image (eg ‘folder’ : ‘/uploads’), however in the controller action of an MVC app the image is also being saved!
Im confused – is it Uplodify or the controller action that saves the image?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
LillyPop – Uploadify sends the filestream via ajax to the controller action, so it’s the controller action (or service class called by the action) that does the heavy lifting. you’ll typically see something like this in your javascript method:
the section
script: '<%=Url.Content("~/en/PropertyDocument/Upload/")%>'is where the controller action is defined.