Dean L Covey
|
| Posted: 08/14/2005, 5:43 AM |
|

I have been working on a project and all has gone flawlessly. Except, I went to create a new page and now I get this error message when accessing this page (which is insecured).
Microsoft VBScript runtime error '800a01a8'
Object required: ''
/Common.asp, line 41
I opened the common.asp file in CodeCharge. Here are lines 41-44. I am not using the fileupload function. I did not modify the common asp. Any ideas?
If InStr(Request.ServerVariables("CONTENT_TYPE"),"multipart/form-data") > 0 And CCGetFromGet("ccsForm", "") <> "" Then
Set objUpload = new clsUploadControl
UploadedFilesCount = objUpload.FilesCount
IsMutipartEncoding = True
|
|
|
 |
Dean L Covey
|
| Posted: 08/14/2005, 2:46 PM |
|

I can't believe the solution is this simple. All I did was type some text before the forms, "test" Then I took out the text. I think there are some blank spaces though. Which is just fine with me.
|
|
|
 |
Walter Kempees
|
| Posted: 08/15/2005, 4:54 AM |
|
As I reaf your first message I thought about you accidentally ( or CCS
automatically) changed the FORM Type to Multipart.
Apparently you changed it all back in your second message.
Good4u
Walter
<Dean LCovey@forum.codecharge (Dean L Covey)> schreef in bericht
news:642ff3c6391dfe@news.codecharge.com...
>
> 
> I have been working on a project and all has gone flawlessly. Except, I
> went to
> create a new page and now I get this error message when accessing this
> page
> (which is insecured).
>
> Microsoft VBScript runtime error '800a01a8'
>
> Object required: ''
>
> /Common.asp, line 41
>
>
> I opened the common.asp file in CodeCharge. Here are lines 41-44. I am not
> using the fileupload function. I did not modify the common asp. Any ideas?
>
> If InStr(Request.ServerVariables("CONTENT_TYPE"),"multipart/form-data") >
> 0 And
> CCGetFromGet("ccsForm", "") <> "" Then
> Set objUpload = new clsUploadControl
> UploadedFilesCount = objUpload.FilesCount
> IsMutipartEncoding = True
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
Dean L Covey
|
| Posted: 08/15/2005, 7:53 PM |
|

If I did change it, it was a pure accident.
|
|
|
 |
Walter Kempees
|
| Posted: 08/16/2005, 12:15 AM |
|
Remenber: Your organization always has an extra employee! Murphy
<Dean LCovey@forum.codecharge (Dean L Covey)> schreef in bericht
news:643015516e5b50@news.codecharge.com...
> 
>
> If I did change it, it was a pure accident.
>
>
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
|