Dear All,
I ready ready need ur all help

, i plan to upload the file using ASP and ActiveFile object, the code i was write as below (I search from Internet)
UploadFile.asp
===========
<form method="post" action="FileUpload1.asp" name="submit" enctype="multipart/form-data">
Choose A File: <input type="file" name="filefield"><br><br>
<input type="submit" name="submit" value="submit"><br>
</form>
FileUpload1.asp
============
<%
Set Post = Server.CreateObject("ActiveFile.Post")
Post.Upload "C:TEMP"
' Display a summary of the uploaded data
For Each FormInput In Post.FormInputs
If FormInput.ContentType <> "" Then
' Display uploaded file information
Response.Write FormInput.Name & " = " & FormInput.File.FileName & _
", size=" & FormInput.File.Size & "<BR>"
Else
' Display form element name and value
Response.Write FormInput.Name & " = " & FormInput.Value & "<BR>"
End If
Next
%>
When try to run, the error below display:
Server object, ASP 0177 (0x800401F3)
Invalid class string
I not know why? is it i not have this object in my workstation? How can i check the object?
Hope somebody can try to solve my problem. TQ :D
Judy