UNIXSONS
|
| Posted: 07/02/2002, 1:54 PM |
|
Using CC and ASP, where would the syntax for customized variables be place in the project? does it go into the Global functions? I know the syntax is
session("NameID")=SomeID But where does it go?
|
|
|
 |
Chris K.
|
| Posted: 07/02/2002, 4:48 PM |
|
If you want to create website-global variables use Session or even better, table containing name->value variables for administrating them with some page. To crate page-global variables just put their declaration/assignment in some event handler (outside events) as early in the event sequence as required.
|
|
|
 |
Nicole
|
| Posted: 07/03/2002, 6:09 AM |
|
Hello,
Please refer to CC built in Help for explanation and sample code for changing value of session variables, field variables, etc.
|
|
|
 |
|