Hi all, I am working with
vb.net 2.0. I need to get a preview of the uploading image on a IMAGE control. ie: whichever image i am selecting using a FILEUPLOAD control should be displayed on an IMAGE control.I have written the code as given:
Code:
function UploadImage(urlClientSide){ document.getElementById('').src=urlClientSide; return false; }
where the fileupload control name is FileUpload1 and Image control name is ImgShip.onchange of fileupload,i have called the function to display the selected image on the IMAGE control.Its working fine except in the IE7 browser.What modification I have to do for displaying it on IE7 also?Please help me.Thank You,Sumith.