ajw93
|
| Posted: 07/23/2002, 7:31 AM |
|
While following the tutorial pages, the very first page to be worked on "tasks_list.asp" generates the following error in live preview:
Microsoft VBScript runtime error '800a01a8'
Object required: 'Cmd.Connection'
/_test2/TaskManager/tasks_list.asp, line 333
I've followed the steps exactly, using WinXPPro, IIS4 server. Permissions on the server are set to full control both for my user name and also iis anonymous user(s) (iusr/iwam) both in NTFS and IIS.
I have not been able to find any answer in the support system. Thanks.
|
|
|
 |
Drake
|
| Posted: 07/23/2002, 11:37 PM |
|
You may want to check your server and make sure it has VBScript 5.5 or higher installed. Bear in mind that CCS generates ASP 3.0 not 2.0.
|
|
|
 |
ajw93
|
| Posted: 07/24/2002, 7:14 AM |
|
//
Author Drake
Date Created 7/23/02 11:37:08 PM
Message You may want to check your server and make sure it has VBScript 5.5 or higher installed. Bear in mind that CCS generates ASP 3.0 not 2.0.
//
Thanks. VBScript 5.5 is installed on my server. I have many asp3.0 pages already running which were created either by hand or using dreamweaver UD / MX. My server's fine, I just can't quite figure out what the problem is with the CC generated pages. FYI line 333 cited above:
'Class_Terminate Event @5-E1528F98
so something does not make sense to me!
the line(s) referencing cmd.connection cited above are lines 502-524:
'Open Method @5-02D5CB9A
Function Open(Cmd)
Errors.Clear
Set Recordset.DataSource = Me
Set Cmd.Connection = Connection
Cmd.CommandOperation = cmdOpen
Cmd.PageSize = PageSize
Cmd.ActivePage = AbsolutePage
Cmd.CommandType = dsTable
CCSEventResult = CCRaiseEvent(CCSEvents, "BeforeBuildSelect", Me)
Cmd.SQL = SQL
Cmd.CountSQL = CountSQL
BuildTableWhere
Cmd.Where = Where
Cmd.OrderBy = Order
CCSEventResult = CCRaiseEvent(CCSEvents, "BeforeExecuteSelect", Me)
If Errors.Count = 0 Then _
Set Recordset = Cmd.Exec(Errors)
CCSEventResult = CCRaiseEvent(CCSEvents, "AfterExecuteSelect", Me)
Set Recordset.FieldsCollection = objFields
Set Open = Recordset
End Function
'End Open Method
I'm sure it's just me missing something.
|
|
|
 |
|