Below is the source code for upload_2_data.cfm


<!--- default values --->
<cfparam name="form.SessionKey" default="">
<cfparam name="form.FlashUpload_FileName" default="">
<cfparam name="form.FirstName" default="">
<cfparam name="form.LastName" default="">
<cfparam name="form.Email" default="">

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
    <title>Flash Upload Example</title>
    <style type="text/css">
        .textfield {  font-family: "MS Sans Serif"; font-size: 9pt; border: 1px solid #cccccc; }
        .button {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color: #FFFFFF; background-color: #000000; cursor: hand}
        .tablestandard { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; }
    </style>
</head>

<body>
    <cfoutput>
    <h3>Flash Upload Example</h3>
    <hr size=1>
    <div class="tablestandard">
        <strong>Below is your submitted data:</strong><br><br>
        Your name: #form.FirstName# #form.LastName#<br>
        Your email address: #form.Email#<br>
        Your photo:<br>
        <!--- automatically delete image to conserve space --->
        <img src="viewimage.cfm?ImageFile=#form.SessionKey#-#form.FlashUpload_FileName#" border="0">
        
        <hr size="1">
        <a href="example_2.cfm">Go back to submission form</a>
    </div>
    </cfoutput>
</body>
</html>