dmhohf
Posts: 16
|
| Posted: 01/07/2007, 1:59 AM |
|
I'm trying to include a login form within an included page. But I recieve the below listed error. The page works fine with "Includable" set to "No". But as soon as I make the page includable and place it in the parent page, it fails after the "onclick" event.
http://my.server.local/default_temp.asp?ccsForm=Login_form
Microsoft VBScript runtime error '800a01f4'
Variable is undefined: 'header_login'
/pages/header_login_events.asp, line 6
Line 6 is:
6: With header_login
I dont know where this object is defined or where it is supposed to be defined, but I think it's something with CCS and auto-generating the objects for the login event.
Any ideas on how to make this workable?
Thanks guys. :)
|
 |
 |
dmhohf
Posts: 16
|
| Posted: 01/08/2007, 9:48 PM |
|
Sorry, needed a break and I figured it out. I looked in the parent page for where the header_login object is declared, and it's actually call just header...
Set header = New clsheader_login
header.initIncludes("pages/")
header.BindEvents
header.Initialize
|
 |
 |
webmaicon
Posts: 9
|
| Posted: 02/06/2007, 6:17 AM |
|
the help.chm, look examples use Referencing Objects:
Main Page Events: <page>.<form>.Visible = False
Includable Page Events: EventCaller.<form>.Visible = False
Form Events: EventCaller.Visible = False
_________________
I am from Brasil and write inglês more ou less.
1. Programming language: php and asp;
2. Database: mysql, oracle and sql server, or any database with instructions sql;
3. erwin, fireworks, flash, flex, code charge, javascript, xml, wap. |
 |
 |
|