I have a flash recorder which record user input and give me a file Byte-Array in Java-script
now i want to upload that byte-array to the server (MVC3), i wonder how can i do this ?
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.
You could send the byte array as raw data to the server using an AJAX request. We could implement a custom model binder which will read the raw request body and map it to a
byte[]:then we could have a controller action that will receive this request:
and finally on the client send the AJAX request: