views:

32

answers:

3

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.

A: 

check out this

http://forums.asp.net/p/1513827/3615216.aspx

Tassadaque
A: 

All I want to do is uploading images to the server without post back in asp.net mvc2

Mazen
You should edit your question, not provide an answer. Stackoverflow is not a forum, that builds up a "conversation". Instead, it is a question and answer site.
awrigley
A: 

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).

Darin Dimitrov