I want viewers to be able to upload their resume to a directory, once they select the "post" resume link from the career.cfm page....here's the link:
<a href="Javascript:ColdFusion.Window.create('ResumePost', 'Upload Resume', 'post_resume.cfm',{height:400,width:450,x:25,y:150,draggable:true,closable:true})">post</a>
===================================================================
The page is running, but the resume isn't being posted to the directory...see code for post_resume.cfm:
<link href="style.css" rel="stylesheet" type="text/css">
<CFIF isDefined("Form.loadresume")>
<!-- If TRUE, upload the file -->
<cffile action="upload"
fileField="loadresume"
destination="D:\path to directory\#loadresume#"
nameConflict="overwrite">
<CFELSE>
<form name="resume_post" action="#cgi.script_name#" method="post">
<div id="resume_contact">
Name: <input type="text" name="name" size="30">
<br>
<br>
<br>
Email: <input type="text" name="email" size="30">
<br>
<br>
<br>
Upload Resume: <input type="file" name="loadresume">
<br>
<br>
<br>
<input type="submit" name="submit" value="Submit">
</div>
</form>
</CFIF>
Any Help would be much appreciated...