Showing initial value in cfinput type="file"
I've added a cfinput tag to a form that is intended to choose an image file to upload to a server. If I set the input to be of type="text", the initial value shows up as I expect. If I set the input back to type="file", I can't get it to show the initial value. Is there a trick I should know?
I've tried using the full path:
<cfinput name="FeaturedImage"
value="C:\ColdFusion9\wwwroot\cpac\images\events\#FeaturedImage#"
type="file"
size="60">
as well as the relative path:
<cfinput name="FeaturedImage"
value="#FeaturedImage#"
type="file"
size="60">
