Hi sewox,
Which error message you mean? can you show me the full message?
And what do you mean register in order to sql connection? can you explain your requirement in detail?
If you mean save the upload file info into database after uploaded. you can achieve it by the code below
<%@ 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>
example
</title>
</head>
<body>
<div>
<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 list,i
'Gets the GUID List of the files based on uploader name
list=Split(Request.Form("myuploader"),"/")
For i=0 to Ubound(list)
Dim mvcfile
'get the uploaded file based on GUID
'save upload file info into db here
Set mvcfile=uploader.GetUploadedFile(list(i))
'mvcfile.FileName is the upload file name
'mvcfile.FileSize is the upload file size
'also you can handle the upload file store location and new file name here
mvcfile.CopyTo(Server.MapPath(".")&"/savefiles/"&mvcfile.FileName)
Next
End If
%>
</div>
</body>
</html>
Regards,
Ken