Hi all, I want to upload Images only with file upload in asp.net mvc2 and show validation for the user in client side using jquery or mvc validation and server side also. any one can help?
Thanks.
Hi all, I want to upload Images only with file upload in asp.net mvc2 and show validation for the user in client side using jquery or mvc validation and server side also. any one can help?
Thanks.
All I want to do is uploading images to the server without post back in asp.net mvc2
You cannot upload an file without posting to the server. You could also take a look at the jquery form plugin which allows you to AJAXify a form and supports file uploads as well (behind the scenes it uses a hidden iframe because files cannot be uploaded using AJAX).