ASP how to achieve file upload. Doc
1. Database table structure (Access): The userid: Text (user ID) to save the uploaded file On FileContentType: Text (used to save the uploaded file type, eg: “Application / msword”, used primarily to keep users can download this file correctly) FileContent: OLE Object (save the file data) 2. HTML file muploadfile.htm <Form Name=”upload_file” enctype=”multipart/form-data” action=”muploadfile.asp” method=post> <input type=hidden name=”UserID” value=”abc”> the <input type=hidden name=”FileUploadStart”> ‘is used to indicate the start file […]