It is uploading just fine. But in the confirmation I am just getting
<%=objUpload.Form("thefile").Value%>
<%=objUpload.Form("thefile").FileSize%>
<%=objUpload.Form("thefile").ContentType%>
<%=objUpload.Form("description").Value%>
No
<p><%strMsg%><P>
This does not seem to be called:
Description
Else
'add description to the database?
'cConn.Execute ("INSERT INTO mydocs (FileName,Description) VALUES ('" & objUpload.Form("thefile").Value & "','" & objUpload.Form("description").Value
strMsg = "The file was successfully uploaded."
End If
I have disabled caching. Do you think that's an issue?
<%
Option Explicit
'Don't cache the page
Response.AddHeader "Pragma", "No-Cache"
Response.CacheControl = "Private"
%>
In upload.asp
George Hester