Rodrigo
|
| Posted: 10/10/2002, 7:41 AM |
|
I need to work variable of session in codecharge studio and Asp, on the other hand to send to parameter to receive to parameter as I can do it.
For example with request.form or request.querystring.....
Thanks Rodrigo.....
|
|
|
 |
Nicole
|
| Posted: 10/11/2002, 6:41 AM |
|
Rodrigo,
To create custom session var in asp use code:
Session(“var_name”) = “value”
To retrieve session var value:
Tmp = Session(“var_name”)
To get the parameter value passed through url use code:
tmp = CCGetParam(“param_name”, “default value”)
To get the field value after the form is submitted use code:
tmp = form_name.field_name.Value
You can find such examples if look at CCS generated code. The functions are available in the common.asp file
|
|
|
 |
|