I have an action method which runs when a user submits a form.
An image URL is passed with the model.
I want to be able to perform some processing on the (downloaded) image, but i don't want a delay in this processing to affect the user experience.
so how can i do this processing in the background whilst happily submitting the form? e.g.:
ProcessImage(imageUrl); //do this in the background without delaying user experience