Rick
|
| Posted: 03/24/2003, 6:05 AM |
|
I Downloaded CCS Release Cand 2.0.
I Added an Upload control to form by dragging the upload control from the 'Forms' toolbox.
Got following message "Persits uploading component:
"Persits" is not found. Please select another or install the component."
Question:
Where/How do you select another component? The message above says to 'select another component' but I could find nothing in the documentation to say how to select another one, say the 'Dundas' component. I had downloaded the Dundas component, not the Persits component and would prefer to use the free Dundas component.
I do not see a choice under the properties of the component that I dragged onto the page. The only reference to the Persists upload I could find was in the Common.asp file. I copied and pasted that code below:
--------
IsMutipartEncoding = False
If InStr(Request.ServerVariables("CONTENT_TYPE"),"multipart/form-data") > 0 Then
On Error Resume Next
Set objUpload = Server.CreateObject("Persits.Upload")
objUpload.IgnoreNoPost = True
UploadedFilesCount = objUpload.Save
IsMutipartEncoding = True
If Err.Number > 0 Then
Response.Write "Persits uploading component ""Persits"" is not found. Please select another or install the component."
Response.End
End If
On Error Goto 0
End If
--------
I am not suppossed to modify this code, am I?
Any help would be greatly appreciated!
Rick
|
|
|
 |
lneisius
|
| Posted: 03/24/2003, 9:45 AM |
|
You can choose the component in the properties manager. Select the project in the filemanager (left side of screen)and the properties manager (lower right side of screen)will give the options for the upload component.
|
|
|
 |
|