I have an ASP.NET
registration form which I want the user to upload their photo in it. I need to show the image immediately after the user selected it without page postback
.
I assume I have to use Asynchronous File Upload
, right? But is there a way to show the image without actually saving it on server? Because I need to check if all entered data by user is valid and then allow the program to upload user's photo to server.
Thanx in advance.