I'd like to build a form in my MVC app that contains a couple of input fields. Besides that I'd like to have the user asynchronously upload some images by selecting an image on his harddrive, then clicking an upload button. Upon successfull upload, the controller handling the image upload would generate a thumbnail of the image and posting the url to the image back to the page, thus allowing to display the thumbnail of the image on the current page. Once 3 images have been uploaded successfully, the user can actually submit the entire form for processing.
I need a starting point here. Links to code samples would be highly appreciated. Thanks in advance.