Hi Everyone,<br><br>I have figured out how to upload a file into the directory of my choice. My problem now, is how do I get the name of the file into a database? I want the user to fill out a form with their name, a description of the file etc. and then submit the file. When I list the files in the db, I want to be able to view the name, description (etc) and then click on the link to the file. How do I store the name of the file in the db without having the user enter it twice? I can get the file name after it has been uploaded by using #File.ClientFile#, but I can't figure out how to get that value into my db. (I'm very new to this stuff!!) Here is my code so far:<br><br>uploaddocument.cfm<br><br><HTML><br><HEAD><br> <TITLE>Specify File to upload</TITLE><br></HEAD><br><br><BODY><br><H2>Specify File to upload</H2><br><FORM ACTION="fileuploadaction.cfm" <br> ENCTYPE="multipart/form-data" <br> METHOD="post"><br> <br>Document Description: <INPUT TYPE="text" NAME="DocDescription" SIZE="50" MAXLENGTH="100"><br><br>Submitted By: <INPUT TYPE="text" NAME="DocSubmitter" SIZE="50" MAXLENGTH="100"><br><P>Enter the complete path and filename of the file to upload:<br> <INPUT TYPE="file"<br> NAME="Filetoupload"<br> SIZE="25"><br></P><br> <INPUT TYPE="submit"<br> VALUE"upload"><br></FORM><br></BODY><br></HTML><br><br>fileuploadaction.cfm<br><br><HTML><br><HEAD><br> <TITLE>upload File</TITLE><br></HEAD><br><br><body><br><H2>upload File</H2><br><br><CFFILE ACTION="upload"<br> DESTINATION="c:\inetpub\ DATASOURCE="virtualmanager" TABLENAME="docs"> <br><br><CFOUTPUT><br>You uploaded the file #File.ClientFile# <br>successfully.<br></CFOUTPUT><br><br></BODY><br></HTML><br><br>Thank you so much to whoever can help me!!<br>