1
在Coldfusion中,您如何檢查他們是否選擇要上傳到服務器的文件? Isdefined不會告訴他們是否指定了文件。Coldfusion表單驗證:文件
在Coldfusion中,您如何檢查他們是否選擇要上傳到服務器的文件? Isdefined不會告訴他們是否指定了文件。Coldfusion表單驗證:文件
<form enctype="multipart/form-data" method="post">
<input name="file" type="file">
<input type="submit">
</form>
<cfif structKeyExists(FORM, "file") AND len(FORM.file)>
You have chosen a file to upload to the server.
<cfelse>
You have NOT chosen a file to upload to the server.
</cfif>