Asim Manzur wrote:
> Any sample code will be really appriciated.

What I have is under NDA. But an outline of the idea is pretty much:

<form onsubmit="confirm()">
   <input type=file name=file1 id=file1>
   <input type=file name=file2 id=file2>
   <input type=file name=file3 id=file3>
   <input type=submit>
</form>

<img src="spacer.gif" id=img1>
<img src="spacer.gif" id=img2>
<img src="spacer.gif" id=img3>

<script>
function confirm()
{
   document.getElementById("img1").src = 
document.getElementById("file1").value;
   document.getElementById("img2").src = 
document.getElementById("file2").value;
   document.getElementById("img3").src = 
document.getElementById("file3").value;

   sleep(3000);
   return confirm("Does this look right?");
}
</script>

Jochem

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208033
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to