web 2.0

How to use ASP & aspSmartUpload - Config & Setup

How to use ASP & aspSmartUpload - Config & Setup This is learn/tutorial asp developers how to using ASP script Upload file by aspSmartUpload.

ShotDev Focus:
- ASP & Upload file by aspSmartUpload.

Solution
Error Type:
Server object, ASP 0177 (0×800401F3)
Invalid class string

Solve Problem

Step 1 Copy aspSmartUpload.dll to C:\Mydir\aspSmartUpload.dll

ASP & aspSmartUpload - Config & Setup

Step 2 RegisterĀ  DLL REGSVR32.EXE c:\Mydir\aspSmartUpload.dll

ASP & aspSmartUpload - Config & Setup

ASP & aspSmartUpload - Config & Setup

Register Successful

Step 3 Copy aspSmartUploadUtil.dll To C:\Windows\system32
and
Copy aspSmartUploadUtil.dll To C:\Mydir

ASP & aspSmartUpload - Config & Setup

.
Step 5 Start -> Run -> PATH=%PATH%;C:\Mydir

ASP & aspSmartUpload - Config & Setup

Example

asp_smartupload.asp


<% OptionĀ  Explicit %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Dim mySmartUpload
Set mySmartUpload = Server.CreateObject("aspSmartUpload.SmartUpload")
If IsObject(mySmartUpload) Then
Response.write("aspSmartUpload Connected")
Else
Response.write("Cannot Connect to aspSmartUpload")
End IF
%>
</body>
</html>

Create a asp file and save to path root-path/myasp/

Run
http://localhost/myasp/asp_smartupload.asp

Screenshot

ASP & aspSmartUpload - Config & Setup
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.