hi,
Please check the example page below, it shows you how to rename the upload file and save to the location you set for. the uploader control has not the function to connect with your database, so you need to write your own code to save the info into your database.
- <%@ Language="VBScript" %>
- <!-- #include file="aspuploader/include_aspuploader.asp" -->
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>
- Form - Single File Upload
- </title>
- </head>
- <body>
- <div class="demo">
-
- <h2>Single File Upload</h2>
- <p> A basic sample demonstrating the use of the Upload control.</p>
-
- <!-- do not need enctype="multipart/form-data" -->
- <form id="form1" method="POST">
- <%
- Dim uploader
- Set uploader=new AspUploader
- uploader.MaxSizeKB=10240
- uploader.Name="myuploader"
- uploader.InsertText="Upload File (Max 10M)"
- uploader.MultipleFilesUpload=true
- %>
- <%=uploader.GetString() %>
- </form>
-
- <br/><br/>
-
- <%
- If Request.Form("myuploader")&""<>"" Then
- Dim mvcfile
- Set mvcfile=uploader.GetUploadedFile(Request.Form("myuploader"))
- mvcfile.MoveTo("C:\inetpub\wwwroot\aspuploader\test\myPhoto.jpg")
- End If
-
- %>
-
- </div>
- </body>
- </html>
regards,
Ken